remove debug
[enigma2.git] / lib / python / Screens / Rc.py
index 49ee1d753baec92625a876de5206097110a7901d..39b8b7fb9a8993d4db141642ae0aa4ba1fa7df80 100644 (file)
@@ -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