aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Console.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-02-22 19:21:16 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2006-02-22 19:21:16 +0000
commit3ad1f5540aa20e5b8132ededc367d8f319b2d5dd (patch)
treee286735b63a3a5024b084d0fad5d93c6a8a20cd8 /lib/python/Screens/Console.py
parentab32bd33272b73f046cdfbe744ca9517f91d653d (diff)
downloadenigma2-3ad1f5540aa20e5b8132ededc367d8f319b2d5dd.tar.gz
enigma2-3ad1f5540aa20e5b8132ededc367d8f319b2d5dd.zip
add ability to download e2-plugins via PluginBrowser
naming conventions for plugin packets: enigma2-plugin-<category>-<pluginname> (category is not yet supported by the GUI)
Diffstat (limited to 'lib/python/Screens/Console.py')
-rw-r--r--lib/python/Screens/Console.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Console.py b/lib/python/Screens/Console.py
index 17d706f5..dbe2fe9e 100644
--- a/lib/python/Screens/Console.py
+++ b/lib/python/Screens/Console.py
@@ -33,7 +33,7 @@ class Console(Screen):
def startRun(self):
self["text"].setText(_("Execution Progress:") + "\n\n")
- self.container.execute("ipkg update")
+ self.container.execute(self.cmdlist[self.run])
def runFinished(self, retval):
self.run += 1