From faaf29fd8322fb3fc29d700befdf063bd4b08d90 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Mon, 14 Jul 2008 22:25:28 +0000 Subject: [PATCH] remove debug --- lib/python/Screens/Rc.py | 5 ----- 1 file changed, 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 -- 2.30.2