Merge pull request #1433 from JRWynneIII/error_message_fix

Fix typo for error message when compiler doesn't exist for arch
This commit is contained in:
Todd Gamblin 2016-08-03 14:29:08 -07:00 committed by GitHub
commit be1158f7a3

View File

@ -495,7 +495,7 @@ class UnavailableCompilerVersionError(spack.error.SpackError):
def __init__(self, compiler_spec, operating_system):
super(UnavailableCompilerVersionError, self).__init__(
"No available compiler version matches '%s' on operating_system %s" % compiler_spec, operating_system, # NOQA: ignore=E501
"No available compiler version matches '%s' on operating_system %s" % (compiler_spec, operating_system), # NOQA: ignore=E501
"Run 'spack compilers' to see available compiler Options.")