Skip to content

Commit d97219b

Browse files
committed
Provide help text for commandline arguments
1 parent aac8857 commit d97219b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

repo2docker/__main__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,13 @@ def get_argparser():
169169
argparser.add_argument(
170170
'--appendix',
171171
type=str,
172-
#help=self.traits()['appendix'].help,
172+
help=Repo2Docker.appendix.help
173173
)
174174

175175
argparser.add_argument(
176176
'--subdir',
177177
type=str,
178-
#help=self.traits()['subdir'].help,
178+
help=Repo2Docker.subdir.help
179179
)
180180

181181
argparser.add_argument(
@@ -189,7 +189,7 @@ def get_argparser():
189189
'--cache-from',
190190
action='append',
191191
default=[],
192-
#help=self.traits()['cache_from'].help
192+
help=Repo2Docker.cache_from.help
193193
)
194194

195195
return argparser

0 commit comments

Comments
 (0)