summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAxel Huebl <axel.huebl@plasma.ninja>2016-09-03 18:43:00 +0200
committerTodd Gamblin <tgamblin@llnl.gov>2016-09-03 09:43:00 -0700
commit16c5403ab3ca35dfa6d715ce2c5434c65de81c17 (patch)
tree68dc2a2ac31819fe30fe8ebfbe460b212e8f6689 /lib
parent497bbb3ae319f0bad23e7e6122560d541a32f1f3 (diff)
downloadspack-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
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/cmd/bootstrap.py2
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'