Solved BMConfigParser's safeGetInt method issues

This commit is contained in:
jai.s 2020-01-15 13:44:30 +05:30
parent 6b1abe7048
commit 1033e7eb34
No known key found for this signature in database
GPG Key ID: 360CFA25EFC67D12

View File

@ -99,13 +99,11 @@ class BMConfigParser(configparser.ConfigParser):
def safeGetInt(self, section, field, default=0):
"""Return value as integer, default on exceptions,
0 if default missing"""
config = configparser.ConfigParser()
try:
# Used in the python2.7
# return self.getint(section, field)
# Used in the python3.5.2
return config.getint(section, field)
# Used in the python3.7.0
return int(self.get(section, field))
except (configparser.NoSectionError, configparser.NoOptionError,
ValueError, AttributeError):
return default