Skip to content
Snippets Groups Projects
Commit 7352e20f authored by Stefano Borini's avatar Stefano Borini Committed by GitHub
Browse files

Merge pull request #21 from force-h2020/py2-compatibility

Added use of super() that is compatible with python 2
parents 8479e52d 5d9ffc57
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ class BDSSApplication(Application):
except NoMatches:
print("No extensions found")
super().__init__(plugins=plugins)
super(BDSSApplication, self).__init__(plugins=plugins)
def _workflow_default(self):
with open(self.workflow_filepath) as f:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment