diff options
| author | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-01 22:44:15 +0000 |
|---|---|---|
| committer | Ronny Strutz <ronny.strutz@multimedia-labs.de> | 2005-09-01 22:44:15 +0000 |
| commit | df4910f7250489c2b971f10bacfecf069a72c307 (patch) | |
| tree | 0a5b7a240356249fc470fcdbef0fb525b99766d0 /lib/python | |
| parent | 894d8e0be915db6a8ee6454cbd01f95b5f6abad9 (diff) | |
| download | enigma2-df4910f7250489c2b971f10bacfecf069a72c307.tar.gz enigma2-df4910f7250489c2b971f10bacfecf069a72c307.zip | |
fixed line break in configfile
Diffstat (limited to 'lib/python')
| -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() |
