Fix SPACK-67: 'spack help stage' was broken.

- remove spurious mutually exclusive group from subparser.
This commit is contained in:
Todd Gamblin
2015-05-10 12:46:33 -07:00
parent 8e87b2176a
commit 25af6478c5

View File

@@ -36,7 +36,6 @@ def setup_parser(subparser):
'-n', '--no-checksum', action='store_true', dest='no_checksum',
help="Do not check downloaded packages against checksum")
dir_parser = subparser.add_mutually_exclusive_group()
subparser.add_argument(
'specs', nargs=argparse.REMAINDER, help="specs of packages to stage")
@@ -52,4 +51,3 @@ def stage(parser, args):
for spec in specs:
package = spack.db.get(spec)
package.do_stage()