Skip to content

Commit

Permalink
typos. fixes #141 (#154)
Browse files Browse the repository at this point in the history
  • Loading branch information
gonsie authored and FrankD412 committed Oct 23, 2018
1 parent 3c26982 commit 3857ce2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maestrowf/datastructures/core/executiongraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def mark_end(self, state):
:param state: State enum corresponding to termination state.
"""
logger.debug(
"Marking %s as finised (%s) -- previously %s",
"Marking %s as finished (%s) -- previously %s",
self.name,
state,
self.status)
Expand Down Expand Up @@ -607,7 +607,7 @@ def _execute_record(self, record, adapter, restart=False):
else:
# Find the subtree, because anything dependent on this step now
# failed.
logger.warning("'%s' failed to properly submit properly. "
logger.warning("'%s' failed to submit properly. "
"Step failed.", record.name)
path, parent = self.bfs_subtree(record.name)
for node in path:
Expand Down

0 comments on commit 3857ce2

Please sign in to comment.