Skip to content

Commit 9cc3521

Browse files
authored
Merge pull request #136 from bmeg/master
Fixing 'path' -> 'location' issue
2 parents 9797ab5 + f3041ff commit 9cc3521

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)