From 8c503b78c371f3632f2619334d6c1b47fb811c47 Mon Sep 17 00:00:00 2001 From: ghost Date: Wed, 15 Apr 2009 21:06:03 +0200 Subject: PluginBrowser.py: fix name splitting (thx to Mike Looijmans) --- lib/python/Screens/PluginBrowser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/python') 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]): -- cgit v1.2.3