X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/ba02fb4aced5868d047a5bffbd2ed87583daee4d..7c12c1089cfbee5b0a390d5f3de37f85de210263:/components.py diff --git a/components.py b/components.py index e66e43b1..315ae44c 100644 --- a/components.py +++ b/components.py @@ -35,9 +35,7 @@ class GUIComponent: def GUIcreate(self, priv, parent, skindata): i = self.GUIcreateInstance(self, parent, skindata) priv["instance"] = i - print str(self) + " notifier list before " + str(self.notifier) self.notifier.append(i) - print str(self) + " notifier list now " + str(self.notifier) if self.notifierAdded: self.notifierAdded(i) @@ -53,7 +51,6 @@ class VariableText: def setText(self, text): if self.message != text: self.message = text - print self.notifier for x in self.notifier: x.setText(self.message)