diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2018-01-05 22:07:51 +0100 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2018-01-05 15:07:51 -0600 |
commit | d978cfbb1aefcb61d98a65ea69463c02b21edd01 (patch) | |
tree | 44c951224a8e48be66f122aa13a758483aa8c5ff | |
parent | d1aee2c2f2b181127d0775c0319a41937a0cb865 (diff) | |
download | spack-d978cfbb1aefcb61d98a65ea69463c02b21edd01.tar.gz spack-d978cfbb1aefcb61d98a65ea69463c02b21edd01.tar.bz2 spack-d978cfbb1aefcb61d98a65ea69463c02b21edd01.tar.xz spack-d978cfbb1aefcb61d98a65ea69463c02b21edd01.zip |
Fixes the bug in spack configure spotted in #6833 (#6837)
-rw-r--r-- | lib/spack/spack/build_environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_environment.py b/lib/spack/spack/build_environment.py index cab455695e..cb3bc6169e 100644 --- a/lib/spack/spack/build_environment.py +++ b/lib/spack/spack/build_environment.py @@ -667,7 +667,7 @@ def fork(pkg, function, dirty, fake): except StopIteration as e: # StopIteration is used to stop installations # before the final stage, mainly for debug purposes - tty.msg(e.message) + tty.msg(e) child_pipe.send(None) except BaseException: |