diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-02 23:12:02 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-02 23:12:02 +0000 |
| commit | bb3620cbe20ad4a79e40efbd81e483fa2819762b (patch) | |
| tree | 40d074a72384dcd20ffcc9905c856270b82d0e77 /lib/python/Components/config.py | |
| parent | a81eab44ddc3d7faad43f8434d04f3c55b81b880 (diff) | |
| download | enigma2-bb3620cbe20ad4a79e40efbd81e483fa2819762b.tar.gz enigma2-bb3620cbe20ad4a79e40efbd81e483fa2819762b.zip | |
removed debug
Diffstat (limited to 'lib/python/Components/config.py')
| -rw-r--r-- | lib/python/Components/config.py | 4 |
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:] |
