fixed line break in configfile
authorRonny Strutz <ronny.strutz@multimedia-labs.de>
Thu, 1 Sep 2005 22:44:15 +0000 (22:44 +0000)
committerRonny Strutz <ronny.strutz@multimedia-labs.de>
Thu, 1 Sep 2005 22:44:15 +0000 (22:44 +0000)
lib/python/Components/config.py

index e0c878f..c4bf8b1 100644 (file)
@@ -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()