summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2013-04-08 23:00:42 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2013-04-08 23:00:42 -0700
commit453471cb0564e3c5e9f420e29077baf31d351461 (patch)
tree307d541bd0b5e9fe84d618962654ac5b48a3a230 /bin
parent39b242a134d481368429e4ab14f9ce847495e6d0 (diff)
downloadspack-453471cb0564e3c5e9f420e29077baf31d351461.tar.gz
spack-453471cb0564e3c5e9f420e29077baf31d351461.tar.bz2
spack-453471cb0564e3c5e9f420e29077baf31d351461.tar.xz
spack-453471cb0564e3c5e9f420e29077baf31d351461.zip
Better help formatting.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/spack3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/spack b/bin/spack
index 294334ac43..26d34387b7 100755
--- a/bin/spack
+++ b/bin/spack
@@ -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: