From: Ronny Strutz Date: Thu, 1 Sep 2005 22:44:15 +0000 (+0000) Subject: fixed line break in configfile X-Git-Tag: 2.6.0~5625 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/df4910f7250489c2b971f10bacfecf069a72c307 fixed line break in configfile --- 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()