From 1109a8040542dcb1b8c5487976a56a93f7295cb0 Mon Sep 17 00:00:00 2001 From: Mike Lin Date: Sun, 18 Feb 2024 23:14:22 -1000 Subject: [PATCH] clarify UncallableWorkflow error message --- WDL/Error.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WDL/Error.py b/WDL/Error.py index 091efae7..9e1a971a 100644 --- a/WDL/Error.py +++ b/WDL/Error.py @@ -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), )