aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens')
-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 5ba7043d..15e6dc8a 100644
--- a/lib/python/Screens/PluginBrowser.py
+++ b/lib/python/Screens/PluginBrowser.py
@@ -184,7 +184,7 @@ class PluginDownloadBrowser(Screen):
self.remainingdata = ""
for x in lines:
- plugin = x.split(" - ")
+ plugin = x.split(" - ", 2)
if len(plugin) == 3:
if self.run == 1 and self.type == self.DOWNLOAD:
self.installedplugins.append(plugin[0])