From 2ad278fa6daf640038b637dcf4b793ba71317f11 Mon Sep 17 00:00:00 2001 From: RaNaN Date: Mon, 27 Sep 2010 21:56:42 +0200 Subject: little fixes --- module/ConfigParser.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'module/ConfigParser.py') diff --git a/module/ConfigParser.py b/module/ConfigParser.py index 714e34ca9..81be6c021 100644 --- a/module/ConfigParser.py +++ b/module/ConfigParser.py @@ -123,13 +123,14 @@ class ConfigParser: listmode = False for line in config: - - line = line.rpartition("#") # removes comments - - if line[1]: - line = line[0] - else: - line = line[2] + + comment = line.rfind("#") + if line.find(":", comment) < 0 and line.find("=", comment) < 0: + line = line.rpartition("#") # removes comments + if line[1]: + line = line[0] + else: + line = line[2] line = line.strip() -- cgit v1.2.3