aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/PluginBrowser.py
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-04-15 21:06:03 +0200
committerghost <andreas.monzner@multimedia-labs.de>2009-04-15 21:06:03 +0200
commit8c503b78c371f3632f2619334d6c1b47fb811c47 (patch)
tree1a8af124298157fc6031a005132e8be176d6a607 /lib/python/Screens/PluginBrowser.py
parent6054913697e752255432becc0a88c046ce611f23 (diff)
downloadenigma2-8c503b78c371f3632f2619334d6c1b47fb811c47.tar.gz
enigma2-8c503b78c371f3632f2619334d6c1b47fb811c47.zip
PluginBrowser.py: fix name splitting (thx to
Mike Looijmans)
Diffstat (limited to 'lib/python/Screens/PluginBrowser.py')
-rw-r--r--lib/python/Screens/PluginBrowser.py2
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]):