Skip to content

Commit

Permalink
Specify the tool_id of the missing tool when raising MissingToolExcep…
Browse files Browse the repository at this point in the history
…tion.
  • Loading branch information
nsoranzo committed Sep 11, 2015
1 parent 63a715f commit ed92a12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/workflow/modules.py
Expand Up @@ -1060,7 +1060,7 @@ def inject( self, step, step_args=None, source="html" ):
if not module:
step.module = None
step.state = None
raise MissingToolException()
raise MissingToolException(step.tool_id)

# Fix any missing parameters
step.upgrade_messages = module.check_and_update_state()
Expand Down

0 comments on commit ed92a12

Please sign in to comment.