NFIFlash: hide hdd and other mounts (#480)
[vuplus_dvbapp] / lib / python / Screens / Console.py
index b57f240..2058c04 100644 (file)
@@ -11,7 +11,6 @@ class Console(Screen):
                </screen>"""
                
        def __init__(self, session, title = "Console", cmdlist = None, finishedCallback = None, closeOnSuccess = False):
-               self.skin = Console.skin
                Screen.__init__(self, session)
 
                self.finishedCallback = finishedCallback
@@ -55,6 +54,7 @@ class Console(Screen):
                        str = self["text"].getText()
                        str += _("Execution finished!!");
                        self["text"].setText(str)
+                       self["text"].lastPage()
                        if self.finishedCallback is not None:
                                self.finishedCallback()
                        if not retval and self.closeOnSuccess: