From 19a5240f06c750794a9a8ab43a3124d569a89199 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Sat, 21 Jan 2006 00:24:18 +0000 Subject: [PATCH] save configSequence floating point correctly --- lib/python/Components/config.py | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 5a4ed12e..e1c0bf8a 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -479,16 +479,20 @@ class configElement: return str(data.strip()) elif control == configSequence: + print self.vals + print self.value try: - value = ((len(data) * ("%d" + self.vals[0]))[0:-1]) % tuple(data) + value = "" + count = 0 + for i in data: + if value !="": + value += self.vals[0] + value += (("%0" + str(len(str(self.vals[1][count][1]))) + "d") % i) + count += 1 + #value = ((len(data) * ("%d" + self.vals[0]))[0:-1]) % tuple(data) except: value = str(data) -# just in case you don't understand the above, here an equivalent: -# value = "" -# for i in data: -# if value !="": -# value += self.vals[0] -# value += str(i) + return value elif control == configSatlist: return str(self.vals[self.value][1]); -- 2.30.2