aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-03-11 21:04:25 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-03-11 21:04:25 +0000
commitcadcfec58b20ce4a11c883d374aab5f4cdfbbe6d (patch)
treefc500cfa72d3be4205b70e3b4d054487da3ce6f4 /lib/python
parentcc89d218402e01a1dc381a50130c6e3581a3555f (diff)
downloadenigma2-cadcfec58b20ce4a11c883d374aab5f4cdfbbe6d.tar.gz
enigma2-cadcfec58b20ce4a11c883d374aab5f4cdfbbe6d.zip
fix plugin download
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/PluginBrowser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py
index 16f3aadd..afc283d5 100644
--- a/lib/python/Screens/PluginBrowser.py
+++ b/lib/python/Screens/PluginBrowser.py
@@ -104,9 +104,9 @@ class PluginDownloadBrowser(Screen):
def runInstall(self, val):
if val:
if self.type == self.DOWNLOAD:
- self.session.openWithCallback(self.installFinished, Console, ["ipkg install " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
+ self.session.openWithCallback(self.installFinished, Console, cmdlist = ["ipkg install " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
elif self.type == self.REMOVE:
- self.session.openWithCallback(self.installFinished, Console, ["ipkg remove " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
+ self.session.openWithCallback(self.installFinished, Console, cmdlist = ["ipkg remove " + "enigma2-plugin-" + self["list"].l.getCurrentSelection()[0].name])
def setWindowTitle(self):
if self.type == self.DOWNLOAD: