diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2009-04-15 21:06:03 +0200 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2009-04-15 21:06:03 +0200 |
| commit | 8c503b78c371f3632f2619334d6c1b47fb811c47 (patch) | |
| tree | 1a8af124298157fc6031a005132e8be176d6a607 /lib/python | |
| parent | 6054913697e752255432becc0a88c046ce611f23 (diff) | |
| download | enigma2-8c503b78c371f3632f2619334d6c1b47fb811c47.tar.gz enigma2-8c503b78c371f3632f2619334d6c1b47fb811c47.zip | |
PluginBrowser.py: fix name splitting (thx to
Mike Looijmans)
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/PluginBrowser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py index e39c4b83..5ba7043d 100644 --- a/lib/python/Screens/PluginBrowser.py +++ b/lib/python/Screens/PluginBrowser.py @@ -202,7 +202,7 @@ class PluginDownloadBrowser(Screen): self.plugins = {} for x in self.pluginlist: - split = x[3].split('-') + split = x[3].split('-', 1) if len(split) < 2: continue if not self.plugins.has_key(split[0]): |
