diff options
author | citibeth <rpf2116@columbia.edu> | 2016-03-13 00:34:46 -0500 |
---|---|---|
committer | citibeth <rpf2116@columbia.edu> | 2016-03-13 00:34:46 -0500 |
commit | 9885f1a19ec5c81121e20cd201007c89cc7b1b1f (patch) | |
tree | b6cff7c17e25b631e0a59d32ec897ef771e2d3b5 | |
parent | 003957a689b8d3d6e6da5408d61c45e73e01b575 (diff) | |
download | spack-9885f1a19ec5c81121e20cd201007c89cc7b1b1f.tar.gz spack-9885f1a19ec5c81121e20cd201007c89cc7b1b1f.tar.bz2 spack-9885f1a19ec5c81121e20cd201007c89cc7b1b1f.tar.xz spack-9885f1a19ec5c81121e20cd201007c89cc7b1b1f.zip |
Fix for Python 2.6
-rw-r--r-- | lib/spack/spack/cmd/spconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/cmd/spconfig.py b/lib/spack/spack/cmd/spconfig.py index a89e5f99e7..6035a61841 100644 --- a/lib/spack/spack/cmd/spconfig.py +++ b/lib/spack/spack/cmd/spconfig.py @@ -94,4 +94,4 @@ def spconfig(self, args): ignore_deps=args.ignore_deps, verbose=not args.quiet, keep_stage=True, # don't remove source dir for SPCONFIG. - install_phases = {'spconfig', 'provenance'}) + install_phases = set(['spconfig', 'provenance'])) |