diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2013-04-08 23:00:42 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2013-04-08 23:00:42 -0700 |
commit | 453471cb0564e3c5e9f420e29077baf31d351461 (patch) | |
tree | 307d541bd0b5e9fe84d618962654ac5b48a3a230 /bin | |
parent | 39b242a134d481368429e4ab14f9ce847495e6d0 (diff) | |
download | spack-453471cb0564e3c5e9f420e29077baf31d351461.tar.gz spack-453471cb0564e3c5e9f420e29077baf31d351461.tar.bz2 spack-453471cb0564e3c5e9f420e29077baf31d351461.tar.xz spack-453471cb0564e3c5e9f420e29077baf31d351461.zip |
Better help formatting.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/spack | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -29,7 +29,8 @@ parser.add_argument('-d', '--debug', action='store_true', dest='debug', # each command module implements a parser() function, to which we pass its # subparser for setup. -subparsers = parser.add_subparsers(title="subcommands", dest="command") +subparsers = parser.add_subparsers( + title="commands", metavar='<command>', dest="command") import spack.cmd for cmd in spack.cmd.commands: |