Skip to content

Commit

Permalink
python2.7 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Nic30 committed Apr 20, 2020
1 parent 464930b commit f554854
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hdlConvertor/translate/common/name_scope.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def __init__(self, parent, name, ignorecase):
:param ignorecase: if True the name comparison does not
care about lowercase/uppercase
"""
super().__init__()
super(NameScope, self).__init__()
self.parent = parent
self.ignorecase = ignorecase

Expand Down

0 comments on commit f554854

Please sign in to comment.