summaryrefslogtreecommitdiff
path: root/src/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/config.py')
-rw-r--r--src/config.py2
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):
"""