Skip to content

Commit

Permalink
Make more compatible with Python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Lasevich committed Aug 19, 2019
1 parent 4abb67b commit a2fd12f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/quick_scheme/nodes/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def _brief_set(self, data):

def _set_identity(self, identity):
''' Set identity '''
super()._set_identity(identity)
super(SchemeNode, self)._set_identity(identity)
id_field = self._int_get('identity', None)
if id_field and identity is not None:
id_field.set(identity)
Expand Down

0 comments on commit a2fd12f

Please sign in to comment.