X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FComponents%2Fconfig.py;h=1ce67f8e73000a5551fa18acf6dffed608bd77db;hp=a2dfb8db12871a2aa8d575e985da5d3533c2fab8;hb=6f273e60e71c0b8ea872ec30ac4178435671218f;hpb=0a6ec816cccbc85a2d2f2a0856f99aabdb43f73b diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index a2dfb8d..1ce67f8 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