fixed flake8 errors

This commit is contained in:
Gregory Becker 2016-08-01 17:22:13 -07:00
parent 31042e8ed1
commit 679ceabf36

View File

@ -336,16 +336,18 @@ def _proper_compiler_style(cspec, arch):
spack.pkgsort.compiler_compare, other_spec.name) spack.pkgsort.compiler_compare, other_spec.name)
matches = sorted(compiler_list, cmp=cmp_compilers) matches = sorted(compiler_list, cmp=cmp_compilers)
if not matches: if not matches:
arch = spec.architecture
raise UnavailableCompilerVersionError(other_compiler, raise UnavailableCompilerVersionError(other_compiler,
spec.architecture.operating_system) arch.platform_os)
# copy concrete version into other_compiler # copy concrete version into other_compiler
index = 0 index = 0
while not _proper_compiler_style(matches[index], spec.architecture): while not _proper_compiler_style(matches[index], spec.architecture):
index += 1 index += 1
if index == len(matches) - 1: if index == len(matches) - 1:
arch = spec.architecture
raise UnavailableCompilerVersionError(spec.compiler, raise UnavailableCompilerVersionError(spec.compiler,
spec.architecture.operating_system) arch.platform_os)
spec.compiler = matches[index].copy() spec.compiler = matches[index].copy()
assert(spec.compiler.concrete) assert(spec.compiler.concrete)
return True # things changed. return True # things changed.