Merge pull request #28 from jaicis/py3convert

Solved BMConfigParser's safeGetInt method issues
This commit is contained in:
jaicis 2020-01-15 13:46:59 +05:30 committed by GitHub
commit 946cfe4627
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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