From: Ronny Strutz Date: Fri, 2 Sep 2005 23:12:02 +0000 (+0000) Subject: removed debug X-Git-Tag: 2.6.0~5584 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/bb3620cbe20ad4a79e40efbd81e483fa2819762b removed debug --- diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index c7434e4d..8cd78712 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -115,7 +115,6 @@ class configSequence: self.parent.change() def __call__(self): #needed by configlist - print "__CALL__" value = "" mPos = self.markedPos print mPos @@ -127,8 +126,7 @@ class configSequence: diff = self.parent.vals[1] - len(str(i)) if diff > 0: - #how about alignment? - value += " "[0:diff] #how is this done correct? + value += " " * diff value += str(i) value = value[0:mPos] + "_" + value[mPos + 1:]