Commit a5fc3af3 authored by Jacek Sowiński's avatar Jacek Sowiński

Don't use interpolation when parsing configuration

With interpolation turned on we couldn't properly use '%' in list_format
strings.
parent 8650033b
......@@ -111,7 +111,7 @@ class _Config:
self.config = {}
self.cp = configparser.ConfigParser()
self.cp = configparser.RawConfigParser()
for section in self.defaults:
self.cp.add_section(section)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment