Merge pull request #497 from yarda/python2-build-fix
build: fixed FTBFS with python2
This commit is contained in:
commit
4def25f3e2
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ else:
|
|||
|
||||
class ConfigParser(cp.ConfigParser):
|
||||
|
||||
def __init__(self, delimiters=None, inline_comment_prefixes=None, *args, **kwargs):
|
||||
def __init__(self, delimiters=None, inline_comment_prefixes=None, strict=False, *args, **kwargs):
|
||||
delims = "".join(list(delimiters))
|
||||
# REs taken from the python-2.7 ConfigParser
|
||||
self.OPTCRE = re.compile(
|
||||
|
|
|
|||
Loading…
Reference in a new issue