More actions help.
This commit is contained in:
parent
79c2b9df06
commit
c15e6c5fe5
1 changed files with 5 additions and 1 deletions
|
@ -127,7 +127,11 @@ def parse_arguments(*unparsed_arguments):
|
||||||
parents=[global_parser],
|
parents=[global_parser],
|
||||||
)
|
)
|
||||||
|
|
||||||
subparsers = top_level_parser.add_subparsers(title='actions', metavar='')
|
subparsers = top_level_parser.add_subparsers(
|
||||||
|
title='actions',
|
||||||
|
metavar='',
|
||||||
|
help='Specify zero or more actions. Defaults to prune, create, and check. Use --help with action for details:',
|
||||||
|
)
|
||||||
init_parser = subparsers.add_parser(
|
init_parser = subparsers.add_parser(
|
||||||
'init',
|
'init',
|
||||||
aliases=SUBPARSER_ALIASES['init'],
|
aliases=SUBPARSER_ALIASES['init'],
|
||||||
|
|
Loading…
Reference in a new issue