diff options
author | Peter Scheibel <scheibel1@llnl.gov> | 2015-10-15 10:35:42 -0700 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2015-10-15 10:35:42 -0700 |
commit | 11861fb8d717623c4f0014194c81fa86041fbe10 (patch) | |
tree | 800f968ba3c0533cabcfd7d5e7bc20f1a56855a1 | |
parent | e3d703b80ffe442d83879c070e0bbeafa4f4ef20 (diff) | |
download | spack-11861fb8d717623c4f0014194c81fa86041fbe10.tar.gz spack-11861fb8d717623c4f0014194c81fa86041fbe10.tar.bz2 spack-11861fb8d717623c4f0014194c81fa86041fbe10.tar.xz spack-11861fb8d717623c4f0014194c81fa86041fbe10.zip |
Changing name of file requires changing function name to be invoked as a command
-rw-r--r-- | lib/spack/spack/cmd/test-install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/test-install.py b/lib/spack/spack/cmd/test-install.py index ea092727fe..eff4bcc46b 100644 --- a/lib/spack/spack/cmd/test-install.py +++ b/lib/spack/spack/cmd/test-install.py @@ -132,7 +132,7 @@ def create_test_output(spec, handled, output): return handled[spec] -def testinstall(parser, args): +def test_install(parser, args): if not args.package: tty.die("install requires a package argument") |