Skip to content

Commit dc67575

Browse files
author
Anton Khodak
committed
Merge remote-tracking branch 'origin/fix/unsupported-operands' into fix/unsupported-operands
2 parents 554900e + 0f12698 commit dc67575

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

cwltool/load_tool.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,7 @@ def _convert_stdstreams_to_files(workflowobj):
126126
for out in workflowobj.get('outputs', []):
127127
if type(out) is not CommentedMap:
128128
with SourceLine(workflowobj, "outputs", ValidationException, _logger.isEnabledFor(logging.DEBUG)):
129-
raise ValidationException("Output '%s' is not a valid CWL type, "
130-
"check the outputs section of your tool" % out)
129+
raise ValidationException("Output '%s' is not a valid OutputParameter." % out)
131130
for streamtype in ['stdout', 'stderr']:
132131
if out.get('type') == streamtype:
133132
if 'outputBinding' in out:

0 commit comments

Comments
 (0)