X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/b4f98a4602ab1b51bf03f989ece928214cafd46b..faaf29fd8322fb3fc29d700befdf063bd4b08d90:/lib/python/Screens/Rc.py 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