diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2014-01-26 02:20:56 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2014-02-05 00:17:34 -0800 |
commit | c0ea783310715a7aa29e91280178f52717c1534d (patch) | |
tree | 1902df8b416c61b1b0767d353073055637016cb2 | |
parent | 6d956f372fe01331ec38834e39a248fe258c9a23 (diff) | |
download | spack-c0ea783310715a7aa29e91280178f52717c1534d.tar.gz spack-c0ea783310715a7aa29e91280178f52717c1534d.tar.bz2 spack-c0ea783310715a7aa29e91280178f52717c1534d.tar.xz spack-c0ea783310715a7aa29e91280178f52717c1534d.zip |
Fix import bug.
-rw-r--r-- | lib/spack/spack/cmd/stage.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/spack/spack/cmd/stage.py b/lib/spack/spack/cmd/stage.py index dd03114d4c..594d1f727d 100644 --- a/lib/spack/spack/cmd/stage.py +++ b/lib/spack/spack/cmd/stage.py @@ -23,8 +23,11 @@ # Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA ############################################################################## import argparse + +import spack.cmd import spack.packages as packages + description="Expand downloaded archive in preparation for install" def setup_parser(subparser): |