summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Scheibel <scheibel1@llnl.gov>2015-10-26 14:27:44 -0700
committerPeter Scheibel <scheibel1@llnl.gov>2015-10-26 14:27:44 -0700
commit9576860f8c97360eddaffe316450ed2f3b87e876 (patch)
treed7fdba9e2246d1afbd8f7b0762fd9474119a9242
parent6a16040462b49acb356236a5f8114b055d680851 (diff)
downloadspack-9576860f8c97360eddaffe316450ed2f3b87e876.tar.gz
spack-9576860f8c97360eddaffe316450ed2f3b87e876.tar.bz2
spack-9576860f8c97360eddaffe316450ed2f3b87e876.tar.xz
spack-9576860f8c97360eddaffe316450ed2f3b87e876.zip
Making SpackError reference consistent.
-rw-r--r--lib/spack/spack/build_environment.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/spack/spack/build_environment.py b/lib/spack/spack/build_environment.py
index 620ad5be9e..dac25d9940 100644
--- a/lib/spack/spack/build_environment.py
+++ b/lib/spack/spack/build_environment.py
@@ -36,7 +36,6 @@ from llnl.util.filesystem import *
import spack
import spack.compilers as compilers
-from spack.error import SpackError
from spack.util.executable import Executable, which
from spack.util.environment import *
@@ -301,5 +300,5 @@ def fork(pkg, function):
.format(str(returncode)))
-class InstallError(SpackError):
+class InstallError(spack.error.SpackError):
"""Raised when a package fails to install"""