aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components/config.py
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-13 00:40:15 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-13 00:40:15 +0000
commit6f273e60e71c0b8ea872ec30ac4178435671218f (patch)
tree2a23e9b46dea895768f699ba5f902b9730aeb503 /lib/python/Components/config.py
parent4724c0eba2e29f53bd93be10a149e0bb89ae8640 (diff)
downloadenigma2-6f273e60e71c0b8ea872ec30ac4178435671218f.tar.gz
enigma2-6f273e60e71c0b8ea872ec30ac4178435671218f.zip
fix configSequence (ip address input should work now)
Diffstat (limited to 'lib/python/Components/config.py')
-rw-r--r--lib/python/Components/config.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py
index a2dfb8db..1ce67f8e 100644
--- a/lib/python/Components/config.py
+++ b/lib/python/Components/config.py
@@ -266,9 +266,9 @@ class configSequence:
#if diff > 0:
## if this helps?!
#value += " " * diff
- print (("%0" + str(len(str(self.valueBounds[num][1]))) + "d") % i)
+ print (("%0" + str(len(str(self.valueBounds[num][1]))) + "d") % int(i))
if (self.censorChar == ""):
- value += ("%0" + str(len(str(self.valueBounds[num][1]))) + "d") % i
+ value += ("%0" + str(len(str(self.valueBounds[num][1]))) + "d") % int(i)
else:
value += (self.censorChar * len(str(self.valueBounds[num][1])))
num += 1