Skip to content

Commit 708ba4b

Browse files
authored
Merge pull request #1056 from common-workflow-language/wilke/fix-pull-image
Changed variable name from enable_pull to pull_image
2 parents 9b9131a + 1aad9c1 commit 708ba4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cwltool/argparser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ def arg_parser(): # type: () -> argparse.ArgumentParser
105105

106106
exgroup = parser.add_mutually_exclusive_group()
107107
exgroup.add_argument("--enable-pull", default=True, action="store_true",
108-
help="Try to pull Docker images", dest="enable_pull")
108+
help="Try to pull Docker images", dest="pull_image")
109109

110110
exgroup.add_argument("--disable-pull", default=True, action="store_false",
111-
help="Do not try to pull Docker images", dest="enable_pull")
111+
help="Do not try to pull Docker images", dest="pull_image")
112112

113113
parser.add_argument("--rdf-serializer",
114114
help="Output RDF serialization format used by --print-rdf (one of turtle (default), n3, nt, xml)",

0 commit comments

Comments
 (0)