From: ghost Date: Wed, 15 Apr 2009 19:06:03 +0000 (+0200) Subject: PluginBrowser.py: fix name splitting (thx to X-Git-Tag: 2.6.0~336^2~5 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/8c503b78c371f3632f2619334d6c1b47fb811c47 PluginBrowser.py: fix name splitting (thx to Mike Looijmans) --- 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]):