diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-03-11 21:04:25 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2006-03-11 21:04:25 +0000 |
| commit | cadcfec58b20ce4a11c883d374aab5f4cdfbbe6d (patch) | |
| tree | fc500cfa72d3be4205b70e3b4d054487da3ce6f4 /lib/python/Screens/PluginBrowser.py | |
| parent | cc89d218402e01a1dc381a50130c6e3581a3555f (diff) | |
| download | enigma2-cadcfec58b20ce4a11c883d374aab5f4cdfbbe6d.tar.gz enigma2-cadcfec58b20ce4a11c883d374aab5f4cdfbbe6d.zip | |
fix plugin download
Diffstat (limited to 'lib/python/Screens/PluginBrowser.py')
| -rw-r--r-- | lib/python/Screens/PluginBrowser.py | 4 |
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: |
