diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-06-23 09:37:53 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-06-23 09:37:53 -0700 |
commit | 8165393962c204650174c43606396f71c506df51 (patch) | |
tree | 65a7cc15ffe256a82a24a51d0ca1c78f47517d67 /lib | |
parent | 8e066ebf2a0a94be9e4590c4828637adf951744e (diff) | |
download | spack-8165393962c204650174c43606396f71c506df51.tar.gz spack-8165393962c204650174c43606396f71c506df51.tar.bz2 spack-8165393962c204650174c43606396f71c506df51.tar.xz spack-8165393962c204650174c43606396f71c506df51.zip |
import & namespace fixes
- Fix Boost issue reported in SPACK-16
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/__init__.py | 2 | ||||
-rw-r--r-- | lib/spack/spack/cmd/compiler.py | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/lib/spack/spack/__init__.py b/lib/spack/spack/__init__.py index 287f2f862c..c4a2de0b2a 100644 --- a/lib/spack/spack/__init__.py +++ b/lib/spack/spack/__init__.py @@ -33,7 +33,7 @@ # TODO: it's not clear where all the stuff that needs to be included in packages # should live. This file is overloaded for spack core vs. for packages. __all__ = ['Package', 'when', 'provides', 'depends_on', - 'patch', 'Version', 'working_dir'] + 'patch', 'Version', 'working_dir', 'which', 'Executable'] import os import tempfile diff --git a/lib/spack/spack/cmd/compiler.py b/lib/spack/spack/cmd/compiler.py index dc1d0546a7..0586484c32 100644 --- a/lib/spack/spack/cmd/compiler.py +++ b/lib/spack/spack/cmd/compiler.py @@ -24,8 +24,6 @@ ############################################################################## import argparse -from pprint import pprint - import llnl.util.tty as tty from llnl.util.tty.colify import colify from llnl.util.lang import index_by |