diff options
author | Axel Huebl <axel.huebl@plasma.ninja> | 2016-09-03 18:43:00 +0200 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-09-03 09:43:00 -0700 |
commit | 16c5403ab3ca35dfa6d715ce2c5434c65de81c17 (patch) | |
tree | 68dc2a2ac31819fe30fe8ebfbe460b212e8f6689 | |
parent | 497bbb3ae319f0bad23e7e6122560d541a32f1f3 (diff) | |
download | spack-16c5403ab3ca35dfa6d715ce2c5434c65de81c17.tar.gz spack-16c5403ab3ca35dfa6d715ce2c5434c65de81c17.tar.bz2 spack-16c5403ab3ca35dfa6d715ce2c5434c65de81c17.tar.xz spack-16c5403ab3ca35dfa6d715ce2c5434c65de81c17.zip |
spack boostrap: fix missing include (#1657)
fix a missing include in booststrap.
found on debian 8 with python 2.7
-rw-r--r-- | lib/spack/spack/cmd/bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/bootstrap.py b/lib/spack/spack/cmd/bootstrap.py index 60e2bd3a11..a79ef4aa68 100644 --- a/lib/spack/spack/cmd/bootstrap.py +++ b/lib/spack/spack/cmd/bootstrap.py @@ -28,7 +28,7 @@ import llnl.util.tty as tty from llnl.util.filesystem import join_path, mkdirp import spack -from spack.util.executable import which +from spack.util.executable import ProcessError, which _SPACK_UPSTREAM = 'https://github.com/llnl/spack' |