summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMatthew LeGendre <legendre1@llnl.gov>2016-03-10 16:23:35 -0800
committerMatthew LeGendre <legendre1@llnl.gov>2016-03-10 16:23:35 -0800
commit4693af0736910244abcb193a65041314447f0da6 (patch)
tree9d53af4dc498677d8bda7079f281d6755b2379f1 /lib
parent670024cf7762044c300b874607ede940eef47556 (diff)
downloadspack-4693af0736910244abcb193a65041314447f0da6.tar.gz
spack-4693af0736910244abcb193a65041314447f0da6.tar.bz2
spack-4693af0736910244abcb193a65041314447f0da6.tar.xz
spack-4693af0736910244abcb193a65041314447f0da6.zip
Fix type error that was causing mis-ordering of compiler versions
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/preferred_packages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/preferred_packages.py b/lib/spack/spack/preferred_packages.py
index 9d219a1a6e..4d8526c75f 100644
--- a/lib/spack/spack/preferred_packages.py
+++ b/lib/spack/spack/preferred_packages.py
@@ -27,7 +27,7 @@ import spack
from spack.version import *
class PreferredPackages(object):
- _default_order = {'compiler' : [ 'gcc', 'intel', 'clang', 'pgi', 'xlc' ] }, # Arbitrary, but consistent
+ _default_order = {'compiler' : [ 'gcc', 'intel', 'clang', 'pgi', 'xlc' ] } # Arbitrary, but consistent
def __init__(self):
self.preferred = spack.config.get_config('packages')