Skip to content

Commit

Permalink
clarify UncallableWorkflow error message
Browse files Browse the repository at this point in the history
  • Loading branch information
mlin committed Feb 19, 2024
1 parent 4a6157f commit 1109a80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WDL/Error.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ def __init__(self, node: SourceNode, name: str) -> None:
super().__init__(
node,
(
"Cannot call workflow {} because its calls don't supply all required inputs, "
"or it lacks an output section"
"Cannot call subworkflow {} because its own calls have missing required inputs, "
"and/or it lacks an output section"
).format(name),
)

Expand Down

0 comments on commit 1109a80

Please sign in to comment.