aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-02-23 15:34:05 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-02-23 15:34:05 +0000
commitf76e89cb7e3e742bf9da52f259d4494a67733487 (patch)
treef312532aea3717f5a475af212d7b4315e37d2ffc /lib/python
parent89cfe350d37c0579faa522ac8da90e5d915a5f06 (diff)
downloadenigma2-f76e89cb7e3e742bf9da52f259d4494a67733487.tar.gz
enigma2-f76e89cb7e3e742bf9da52f259d4494a67733487.zip
fix command execution for removal of plugins (don't "ipkg update" first)
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/PluginBrowser.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py
index 99c0ac24..e9b009ae 100644
--- a/lib/python/Screens/PluginBrowser.py
+++ b/lib/python/Screens/PluginBrowser.py
@@ -109,7 +109,11 @@ class PluginDownloadBrowser(Screen):
def startRun(self):
self["list"].instance.hide()
- self.container.execute("ipkg update")
+ if self.type == self.DOWNLOAD:
+ self.container.execute("ipkg update")
+ elif self.type == self.REMOVE:
+ self.run = 1
+ self.container.execute("ipkg list_installed enigma2-plugin-*")
def installFinished(self):
plugins.readPluginList(resolveFilename(SCOPE_PLUGINS))
@@ -120,8 +124,6 @@ class PluginDownloadBrowser(Screen):
self.run = 1
if self.type == self.DOWNLOAD:
self.container.execute("ipkg list enigma2-plugin-*")
- elif self.type == self.REMOVE:
- self.container.execute("ipkg list_installed enigma2-plugin-*")
else:
if len(self.pluginlist) > 0:
self.updateList()