aboutsummaryrefslogtreecommitdiffstats
path: root/share/ConfigFile.py
diff options
context:
space:
mode:
Diffstat (limited to 'share/ConfigFile.py')
-rw-r--r--share/ConfigFile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/ConfigFile.py b/share/ConfigFile.py
index 656c48a..b041169 100644
--- a/share/ConfigFile.py
+++ b/share/ConfigFile.py
@@ -119,8 +119,8 @@ class ConfigFile:
self.sym_link = link
return self
- def exists(self):
- return os.path.exists(self.path) or (self.suffix and os.path.exists(self.path + self.suffix))
+ def exists(self, really=0):
+ return os.path.exists(self.path) or (not really and self.suffix and os.path.exists(self.path + self.suffix))
def move(self, suffix):
self.suffix = suffix