Make the configparser case sensitive.
[cascardo/ipsilon.git] / ipsilon / util / data.py
index 20dd6aa..94d402b 100644 (file)
@@ -136,6 +136,7 @@ class FileStore(Log):
         timestamp = stat.st_mtime
         if self._config is None or timestamp > self._timestamp:
             self._config = ConfigParser.RawConfigParser()
+            self._config.optionxform = str
             self._config.read(self._filename)
         return self._config