From 131f5396b6fa91ba5f2cb9a115e8837aaf2e01e2 Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Fri, 23 Oct 2009 03:28:19 +0000 Subject: [PATCH] Use RawConfigParser so that it doesn't try to format string svn: r13396 --- src/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.py b/src/config.py index f98abc9d5..a941d4342 100644 --- a/src/config.py +++ b/src/config.py @@ -153,7 +153,7 @@ class ConfigManager(object): if filename is None: filename = self.filename if filename and os.path.exists(filename): - parser = ConfigParser.ConfigParser() + parser = ConfigParser.RawConfigParser() parser.read(filename) for sec in parser.sections(): name = sec.lower()