minimally improved LCD support
[vuplus_dvbapp] / lib / python / Screens / Console.py
index 17d706f..82fc8d1 100644 (file)
@@ -33,7 +33,8 @@ class Console(Screen):
 
        def startRun(self):
                self["text"].setText(_("Execution Progress:") + "\n\n")
-               self.container.execute("ipkg update")
+               print "Console: executing in run", self.run, " the command:", self.cmdlist[self.run]
+               self.container.execute(self.cmdlist[self.run])
 
        def runFinished(self, retval):
                self.run += 1
@@ -49,4 +50,4 @@ class Console(Screen):
                        self.close()
 
        def dataAvail(self, str):
-               self["text"].setText(self["text"].getText() + str)
\ No newline at end of file
+               self["text"].setText(self["text"].getText() + str)