diff options
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/config.py b/lib/python/Components/config.py index e0c878f6..c4bf8b1e 100644 --- a/lib/python/Components/config.py +++ b/lib/python/Components/config.py @@ -29,7 +29,7 @@ class configFile: fileHandle = open("config", "w") for x in self.configElements: - fileHandle.write(x + "=" + self.configElements[x] + "\n") + fileHandle.write(x + "=" + self.configElements[x]) fileHandle.close() |
