From df4910f7250489c2b971f10bacfecf069a72c307 Mon Sep 17 00:00:00 2001 From: Ronny Strutz Date: Thu, 1 Sep 2005 22:44:15 +0000 Subject: fixed line break in configfile --- lib/python/Components/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/python/Components') 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() -- cgit v1.2.3