From: Felix Domke Date: Mon, 10 Aug 2009 10:00:49 +0000 (+0200) Subject: patch by Mike Looijmans: support plugins with a dash in description X-Git-Tag: 2.6.0~149 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/d737336f55ea7bb0a714d73cabd351d6db8bdddd patch by Mike Looijmans: support plugins with a dash in description --- 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])