diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-02-04 19:07:22 +0530 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-02-05 00:17:36 -0800 |
commit | 9e469c37c48810f2b337cc8de5723a17e415789b (patch) | |
tree | 8886a4fb914472b1bd574c91fb9773f863384e5e /lib | |
parent | 4a913cbbd0795820e6f5d9359c1420fdeb2584d8 (diff) | |
download | spack-9e469c37c48810f2b337cc8de5723a17e415789b.tar.gz spack-9e469c37c48810f2b337cc8de5723a17e415789b.tar.bz2 spack-9e469c37c48810f2b337cc8de5723a17e415789b.tar.xz spack-9e469c37c48810f2b337cc8de5723a17e415789b.zip |
Bugfix in clean command.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/clean.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/clean.py b/lib/spack/spack/cmd/clean.py index d74c5252c8..8c8d90fe21 100644 --- a/lib/spack/spack/cmd/clean.py +++ b/lib/spack/spack/cmd/clean.py @@ -48,7 +48,7 @@ def clean(parser, args): specs = spack.cmd.parse_specs(args.packages, concretize=True) for spec in specs: - tty.message("Cleaning for spec:", spec) + tty.msg("Cleaning for spec:", spec) package = packages.get(spec.name) if args.dist: package.do_clean_dist() |