Skip to content

Commit 0cadfc7

Browse files
committed
look for doc, not description
1 parent 1e2ee9e commit 0cadfc7

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
@@ -365,7 +365,7 @@ def generate_parser(toolparser, tool, namemap):
365365
name = shortname(inp["id"])
366366
namemap[name.replace("-", "_")] = name
367367
inptype = inp["type"]
368-
description = inp.get("description", "")
368+
description = inp.get("doc", "")
369369
default = inp.get("default", None)
370370
add_argument(toolparser, name, inptype, description, default)
371371

0 commit comments

Comments
 (0)