Skip to content

Commit

Permalink
Fix extra-space (thx @nsoranzo)
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdbeek committed Sep 5, 2017
1 parent 33defd1 commit 09c96da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/managers/workflows.py
Expand Up @@ -569,7 +569,7 @@ def _workflow_to_dict_export(self, trans, stored=None, workflow=None):
if not module:
return None
if module.type == 'tool' and not module.tool:
msg = "Cannot download workflow because the tool '%s' is missing in step %s. " % (step.tool_id, step.order_index)
msg = "Cannot download workflow because the tool '%s' is missing in step %s." % (step.tool_id, step.order_index)
raise exceptions.ToolMissingException(msg)
# Get user annotation.
annotation_str = self.get_item_annotation_str(trans.sa_session, trans.user, step) or ''
Expand Down

0 comments on commit 09c96da

Please sign in to comment.