diff options
| author | Felix Domke <felix.domke@multimedia-labs.de> | 2009-08-10 12:00:49 +0200 |
|---|---|---|
| committer | Felix Domke <felix.domke@multimedia-labs.de> | 2009-08-10 12:00:49 +0200 |
| commit | d737336f55ea7bb0a714d73cabd351d6db8bdddd (patch) | |
| tree | 39c61264d5a2c3c21672cf984ca95f2b4c7b6655 /lib/python/Screens | |
| parent | 773a362626cb63197bcd0f4d0e5550c6d471da28 (diff) | |
| download | enigma2-d737336f55ea7bb0a714d73cabd351d6db8bdddd.tar.gz enigma2-d737336f55ea7bb0a714d73cabd351d6db8bdddd.zip | |
patch by Mike Looijmans: support plugins with a dash in description
Diffstat (limited to 'lib/python/Screens')
| -rw-r--r-- | lib/python/Screens/PluginBrowser.py | 2 |
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]) |
