aboutsummaryrefslogtreecommitdiffstats
path: root/RepSys/ConfigParser.py
diff options
context:
space:
mode:
Diffstat (limited to 'RepSys/ConfigParser.py')
-rw-r--r--RepSys/ConfigParser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/RepSys/ConfigParser.py b/RepSys/ConfigParser.py
index d995a57..4dc3e3c 100644
--- a/RepSys/ConfigParser.py
+++ b/RepSys/ConfigParser.py
@@ -388,14 +388,14 @@ class Config:
return handler(section, option, walk=True)
return self._config.walk(section, option, raw, vars)
- def get(self, section, option, default=None, wrap=True):
+ def get(self, section, option, default=None, raw=False, wrap=True):
if wrap:
handler = self._wrapped.get(section)
if handler:
handler = self._wrapped.get(section)
return handler(section, option, default)
try:
- return self._config.get(section, option)
+ return self._config.get(section, option, raw=raw)
except Error:
return default