aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens/Console.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens/Console.py')
-rw-r--r--lib/python/Screens/Console.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/Screens/Console.py b/lib/python/Screens/Console.py
index 622fb447..d71a7a82 100644
--- a/lib/python/Screens/Console.py
+++ b/lib/python/Screens/Console.py
@@ -63,6 +63,8 @@ class Console(Screen):
def cancel(self):
if self.run == len(self.cmdlist):
self.close()
+ self.container.appClosed.get().remove(self.runFinished)
+ self.container.dataAvail.get().remove(self.dataAvail)
def dataAvail(self, str):
self["text"].setText(self["text"].getText() + str)