diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-13 00:52:05 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-13 00:52:05 +0000 |
| commit | 0a9a7967e1282fe7a85ec906c93e20a25ce821d1 (patch) | |
| tree | 4413835bd769e8b6d63cb39c58c63d6538b25d49 /lib/python/Components/config.py | |
| parent | 6f273e60e71c0b8ea872ec30ac4178435671218f (diff) | |
| download | enigma2-0a9a7967e1282fe7a85ec906c93e20a25ce821d1.tar.gz enigma2-0a9a7967e1282fe7a85ec906c93e20a25ce821d1.zip | |
fix ip address
Diffstat (limited to 'lib/python/Components/config.py')
| -rw-r--r-- | lib/python/Components/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 1ce67f8e..a2dfb8db 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") % int(i)) + print (("%0" + str(len(str(self.valueBounds[num][1]))) + "d") % i) if (self.censorChar == ""): - value += ("%0" + str(len(str(self.valueBounds[num][1]))) + "d") % int(i) + value += ("%0" + str(len(str(self.valueBounds[num][1]))) + "d") % i else: value += (self.censorChar * len(str(self.valueBounds[num][1]))) num += 1 |
