From ae0a6546752e95735cb8d4086127540619f44419 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Mon, 2 Aug 2010 12:26:11 +0200 Subject: reconnect fix --- module/ConfigParser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/ConfigParser.py') diff --git a/module/ConfigParser.py b/module/ConfigParser.py index 3abc5a6ae..859136572 100644 --- a/module/ConfigParser.py +++ b/module/ConfigParser.py @@ -196,7 +196,7 @@ class ConfigParser: with open(filename, "wb") as f: for section in config.iterkeys(): - f.write('%s - "%s":\n' % (section, config[section]["desc"])) + f.write('\n%s - "%s":\n' % (section, config[section]["desc"])) for option, data in config[section].iteritems(): -- cgit v1.2.3