aboutsummaryrefslogtreecommitdiff
path: root/config/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.py')
-rwxr-xr-xconfig/config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/config/config.py b/config/config.py
index 3ae809b..57dbddc 100755
--- a/config/config.py
+++ b/config/config.py
@@ -125,7 +125,8 @@ class RawConfigParser(configparser.RawConfigParser):
def getboolean(self, section, option, default = False):
if self.has_option(section, option):
- return super(RawConfigParser, self).getboolean(section, option)
+ # RawConfigParser is an old-stle class, super() doesn't work, feh.
+ return configparser.RawConfigParser.getboolean(self, section, option)
else:
return default