aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/PluginBrowser.py
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2009-02-13 01:05:42 +0100
committerFelix Domke <tmbinc@elitedvb.net>2009-02-13 01:05:42 +0100
commitc46312d7f5ce4113ece4c33595b7192eccadcb1d (patch)
treee3319cfa0f7cf929f2c2d181f60bf80dc34a7361 /lib/python/Screens/PluginBrowser.py
parentaed27e79c07f8f2463ccefed5ba5c3e1b4352052 (diff)
parentc7cadfc8b46d1f6db38fac73624393873cae2ac7 (diff)
downloadenigma2-c46312d7f5ce4113ece4c33595b7192eccadcb1d.tar.gz
enigma2-c46312d7f5ce4113ece4c33595b7192eccadcb1d.zip
Merge branch 'master' of git.opendreambox.org:/git/enigma2
Diffstat (limited to 'lib/python/Screens/PluginBrowser.py')
-rw-r--r--lib/python/Screens/PluginBrowser.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py
index 520d6d7a..0f6ee746 100644
--- a/lib/python/Screens/PluginBrowser.py
+++ b/lib/python/Screens/PluginBrowser.py
@@ -106,17 +106,18 @@ class PluginDownloadBrowser(Screen):
if sel is None:
return
- if type(sel[0]) is str: # category
- if sel[0] in self.expanded:
- self.expanded.remove(sel[0])
+ sel = sel[0]
+ if isinstance(sel, str): # category
+ if sel in self.expanded:
+ self.expanded.remove(sel)
else:
- self.expanded.append(sel[0])
+ self.expanded.append(sel)
self.updateList()
else:
if self.type == self.DOWNLOAD:
- self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to download\nthe plugin \"%s\"?") % sel[0].name)
+ self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to download\nthe plugin \"%s\"?") % sel.name)
elif self.type == self.REMOVE:
- self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to REMOVE\nthe plugin \"%s\"?") % sel[0].name)
+ self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to REMOVE\nthe plugin \"%s\"?") % sel.name)
def runInstall(self, val):
if val: