aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/config.py
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-09-02 23:12:02 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-09-02 23:12:02 +0000
commitbb3620cbe20ad4a79e40efbd81e483fa2819762b (patch)
tree40d074a72384dcd20ffcc9905c856270b82d0e77 /lib/python/Components/config.py
parenta81eab44ddc3d7faad43f8434d04f3c55b81b880 (diff)
downloadenigma2-bb3620cbe20ad4a79e40efbd81e483fa2819762b.tar.gz
enigma2-bb3620cbe20ad4a79e40efbd81e483fa2819762b.zip
removed debug
Diffstat (limited to 'lib/python/Components/config.py')
-rw-r--r--lib/python/Components/config.py4
1 files changed, 1 insertions, 3 deletions
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:]