diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2018-01-05 14:26:43 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-05 14:26:43 -0600 |
commit | d1aee2c2f2b181127d0775c0319a41937a0cb865 (patch) | |
tree | c7e1939ba29363f74249434d24b86f8a8f90f860 /lib | |
parent | fc1c7c2db7814cf82fa88ff055dacd6f20e61abb (diff) | |
download | spack-d1aee2c2f2b181127d0775c0319a41937a0cb865.tar.gz spack-d1aee2c2f2b181127d0775c0319a41937a0cb865.tar.bz2 spack-d1aee2c2f2b181127d0775c0319a41937a0cb865.tar.xz spack-d1aee2c2f2b181127d0775c0319a41937a0cb865.zip |
Fix spack configure output (#6835)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/configure.py b/lib/spack/spack/cmd/configure.py index 346fc71bdc..311b53d9c6 100644 --- a/lib/spack/spack/cmd/configure.py +++ b/lib/spack/spack/cmd/configure.py @@ -79,7 +79,7 @@ def _stop_at_phase_during_install(args, calling_fn, phase_mapping): # Install package dependencies if needed parser = argparse.ArgumentParser() inst.setup_parser(parser) - tty.msg('Checking dependencies for {0}'.format(args.package)) + tty.msg('Checking dependencies for {0}'.format(args.package[0])) cli_args = ['-v'] if args.verbose else [] install_args = parser.parse_args(cli_args + ['--only=dependencies']) install_args.package = args.package |