From 9adbc6720dfe4385bcd2c9d364874c1e7f7cf9ac Mon Sep 17 00:00:00 2001 From: Ronny Strutz Date: Thu, 1 Sep 2005 23:16:37 +0000 Subject: [PATCH] added skip comment removed some old stuff --- lib/python/Components/config.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index 7419eff5..ed85ed22 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -12,6 +12,10 @@ class configFile: line = self.file.readline() if line == "": break + + if line.startswith("#"): #skip comments + continue + self.addElement(line) self.file.close() @@ -38,10 +42,6 @@ class configFile: if wstr[len(wstr) - 1] != '\n': wstr = wstr + "\n" - - # fileHandle.write(wstr) - #else: - # fileHandle.write(wstr + "\n") fileHandle.write(wstr) @@ -155,7 +155,6 @@ class configElement: self.save() #add missing value to dict else: self.value = value - print "value ok" def __init__(self, configPath, control, defaultValue, vals): self.configPath = configPath -- 2.30.2