Skip to content

Commit f3041ff

Browse files
committed
Fixing 'path' -> 'location' issue
1 parent 9797ab5 commit f3041ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cwltool/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ def flatten_deps(d, files): # type: (Any, Set[unicode]) -> None
483483
for s in d:
484484
flatten_deps(s, files)
485485
elif isinstance(d, dict):
486-
files.add(d["path"])
486+
files.add(d["location"])
487487
if "secondaryFiles" in d:
488488
flatten_deps(d["secondaryFiles"], files)
489489

0 commit comments

Comments
 (0)