From f76e89cb7e3e742bf9da52f259d4494a67733487 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Thu, 23 Feb 2006 15:34:05 +0000 Subject: fix command execution for removal of plugins (don't "ipkg update" first) --- lib/python/Screens/PluginBrowser.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'lib/python') 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() -- cgit v1.2.3