diff options
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/config.py | 9 |
1 files 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 |
