More informative help messages for spack config. (#2453)

This commit is contained in:
Sergey Kosukhin 2016-12-01 18:52:56 +01:00 committed by Todd Gamblin
parent bc4237c93e
commit 051720defd

View file

@ -35,10 +35,18 @@ def setup_parser(subparser):
sp = subparser.add_subparsers(metavar='SUBCOMMAND', dest='config_command')
get_parser = sp.add_parser('get', help='Print configuration values.')
get_parser.add_argument('section', help="Configuration section to print.")
get_parser.add_argument('section',
help="Configuration section to print. "
"Options: %(choices)s.",
metavar='SECTION',
choices=spack.config.section_schemas)
edit_parser = sp.add_parser('edit', help='Edit configuration file.')
edit_parser.add_argument('section', help="Configuration section to edit")
edit_parser.add_argument('section',
help="Configuration section to edit. "
"Options: %(choices)s.",
metavar='SECTION',
choices=spack.config.section_schemas)
def config_get(args):