diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config.py b/src/config.py index 79a70bb5..6b0acf2c 100644 --- a/src/config.py +++ b/src/config.py @@ -121,7 +121,7 @@ class Config(RawConfigParser): """ get a value and returns it as an int """ - RawConfigParser.getint(self, section, option) + return RawConfigParser.getint(self, section, option) def getfloat(self, option, section=DEFSECTION): """ |