Skip to content

Commit

Permalink
cli: decrease verbosity of cwl workflow creation
Browse files Browse the repository at this point in the history
Signed-off-by: Dinos Kousidis <dinos.kousidis@cern.ch>
  • Loading branch information
dinosk committed Jul 11, 2018
1 parent 12571cb commit bb42fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reana_client/utils.py
Expand Up @@ -69,7 +69,7 @@ def cwl_load(workflow_file):
:returns: A dictionary which represents the valid `cwl` workflow.
"""
mystdout = StringIO()
main(["--debug", "--pack", workflow_file], stdout=mystdout)
main(["--pack", "--quiet", workflow_file], stdout=mystdout)
value = mystdout.getvalue()
return json.loads(value)

Expand Down

0 comments on commit bb42fd0

Please sign in to comment.