remove faulty debug print
[enigma2.git] / lib / python / Screens / Console.py
index dbe2fe9e5125241682900cc11e4ee960422be093..82fc8d1c310f976f750813ca2d838e6284935fab 100644 (file)
@@ -33,6 +33,7 @@ class Console(Screen):
 
        def startRun(self):
                self["text"].setText(_("Execution Progress:") + "\n\n")
+               print "Console: executing in run", self.run, " the command:", self.cmdlist[self.run]
                self.container.execute(self.cmdlist[self.run])
 
        def runFinished(self, retval):
@@ -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)