aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-20 21:22:45 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2008-10-20 21:22:45 +0000
commitb227fb3853c96c073116b784c93c653cafda99f7 (patch)
treee58a9029f289c27455ee1413e8091e66d546aa5f /lib/python
parent176633d2d609789050efb1d9567cccf038054c2b (diff)
downloadenigma2-b227fb3853c96c073116b784c93c653cafda99f7.tar.gz
enigma2-b227fb3853c96c073116b784c93c653cafda99f7.zip
remove debug output
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/TimerEdit.py4
1 files changed, 0 insertions, 4 deletions
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"))