summaryrefslogtreecommitdiffstats
path: root/ipapython
diff options
context:
space:
mode:
Diffstat (limited to 'ipapython')
-rw-r--r--ipapython/sysrestore.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ipapython/sysrestore.py b/ipapython/sysrestore.py
index 65ef5da89..c43948db5 100644
--- a/ipapython/sysrestore.py
+++ b/ipapython/sysrestore.py
@@ -71,6 +71,7 @@ class FileStore:
self.files = {}
p = SafeConfigParser()
+ p.optionxform = str
p.read(self._index)
for section in p.sections():
@@ -92,6 +93,7 @@ class FileStore:
return
p = SafeConfigParser()
+ p.optionxform = str
p.add_section('files')
for (key, value) in self.files.items():
@@ -327,6 +329,7 @@ class StateFile:
self.modules = {}
p = SafeConfigParser()
+ p.optionxform = str
p.read(self._path)
for module in p.sections():
@@ -355,6 +358,7 @@ class StateFile:
return
p = SafeConfigParser()
+ p.optionxform = str
for module in self.modules.keys():
p.add_section(module)