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 e0c878f6a0edb4ee65a9c56fed268c2cf3a4b5e7..c4bf8b1e25bb209b14c46531b1f56216ecdf09a7 100644 (file)
@@ -29,7 +29,7 @@ class configFile:
                fileHandle = open("config", "w")
                
                for x in self.configElements:
                fileHandle = open("config", "w")
                
                for x in self.configElements:
-                       fileHandle.write(x + "=" + self.configElements[x] + "\n")
+                       fileHandle.write(x + "=" + self.configElements[x])
 
                fileHandle.close()              
 
 
                fileHandle.close()