python 3x compatibility fix (positional arguments vs named arguments)

pull/1622/head^2
sebres 2016-11-25 20:12:49 +01:00
parent 097970781c
commit ec7bb0d6c9
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ class ConfigReader():
def get(self, sec, opt, raw=False, vars={}):
if self._cfg is not None:
return self._cfg.get(sec, opt, raw, vars)
return self._cfg.get(sec, opt, raw=raw, vars=vars)
return None
def getOptions(self, *args, **kwargs):