summaryrefslogtreecommitdiffstats
path: root/module/XMLConfigParser.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/XMLConfigParser.py')
-rw-r--r--module/XMLConfigParser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/XMLConfigParser.py b/module/XMLConfigParser.py
index 87b863d28..50214c49a 100644
--- a/module/XMLConfigParser.py
+++ b/module/XMLConfigParser.py
@@ -42,7 +42,7 @@ class XMLConfigParser():
file = self.file
if self.forceDefault:
file = self.file_default
- if not exists(self.file) or self.forceDefault:
+ if not exists(self.file):
self._copyConfig()
with open(file, 'r') as fh:
self.xml = parse(fh)