Skip to content

Commit

Permalink
Fix bug, missing call to getting step in registerDoneExecutionForAll.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsorby committed Nov 17, 2021
1 parent f5dcfca commit 1b872ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapclient/core/workflow/workflowscene.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def execute(self):
def registerDoneExecutionForAll(self, callback):
for item in self._items:
if item.Type == MetaStep.Type:
item.getStep.registerDoneExecution(callback)
item.getStep().registerDoneExecution(callback)

def clear(self):
self._items.clear()
Expand Down

0 comments on commit 1b872ce

Please sign in to comment.