aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-07-14 22:25:28 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2008-07-14 22:25:28 +0000
commitfaaf29fd8322fb3fc29d700befdf063bd4b08d90 (patch)
treea7690a7227730c5ea2f7cc346b058e9150f7718e
parentb4f98a4602ab1b51bf03f989ece928214cafd46b (diff)
downloadenigma2-faaf29fd8322fb3fc29d700befdf063bd4b08d90.tar.gz
enigma2-faaf29fd8322fb3fc29d700befdf063bd4b08d90.zip
remove debug
-rw-r--r--lib/python/Screens/Rc.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/python/Screens/Rc.py b/lib/python/Screens/Rc.py
index 49ee1d75..39b8b7fb 100644
--- a/lib/python/Screens/Rc.py
+++ b/lib/python/Screens/Rc.py
@@ -35,19 +35,14 @@ class Rc:
for rc in rcs:
id = int(rc.attrib["id"])
self.rcs[id] = {}
- print "id:", id
for key in rc:
name = key.attrib["name"]
pos = key.attrib["pos"].split(",")
- print "name:", name
- print "pos:", pos
self.rcs[id][name] = (int(pos[0]), int(pos[1]))
def getSelectPic(self, pos):
for selectPic in self.selectpics:
if pos[1] <= selectPic[0]:
- print "pos[1]:", pos[1]
- print "selectPic[0]:", selectPic[0]
return (selectPic[1], selectPic[2])
return None