From: Andreas Monzner Date: Mon, 20 Oct 2008 21:22:45 +0000 (+0000) Subject: remove debug output X-Git-Tag: 2.6.0~733 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/b227fb3853c96c073116b784c93c653cafda99f7 remove debug output --- diff --git a/lib/python/Screens/TimerEdit.py b/lib/python/Screens/TimerEdit.py index 81836fd0..5e486272 100644 --- a/lib/python/Screens/TimerEdit.py +++ b/lib/python/Screens/TimerEdit.py @@ -379,7 +379,6 @@ class TimerSanityConflict(Screen): def updateState(self): if self.timer[0] is not None: green_text = self["key_green"].getText() - print "green_text '%s'" %(green_text) if self.timer[0].disabled and green_text != _("Enable"): self["actions"].actions.update({"green":self.toggleTimer1}) self["key_green"].setText(_("Enable")) @@ -394,11 +393,8 @@ class TimerSanityConflict(Screen): self["key_green"].instance.invalidate() if len(self.timer) > 1: x = self["list"].getSelectedIndex() - print "x: ",x - print "timer[x]: ", self.timer[x] if self.timer[x] is not None: blue_text = self["key_blue"].getText() - print "blue_text '%s'" %(blue_text) if self.timer[x].disabled and blue_text != _("Enable"): self["actions"].actions.update({"blue":self.toggleTimer2}) self["key_blue"].setText(_("Enable"))