Skip to content

Commit 34b5210

Browse files
authored
Soften this as well
1 parent db6c51e commit 34b5210

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ def try_make_job(self, step, final_output_callback, **kwargs):
339339
# type: (WorkflowJobStep, Callable[[Any, Any], Any], bool, bool, **Any) -> Generator
340340

341341
js_console = kwargs.get("js_console", False)
342-
debug = kwargs["debug"] or False
342+
debug = kwargs.get("debug", False)
343343

344344
inputparms = step.tool["inputs"]
345345
outputparms = step.tool["outputs"]

0 commit comments

Comments
 (0)