Added parens to %'s arguments. Fixes #1432

This commit is contained in:
James Riley Wynne III 2016-08-03 17:16:04 -04:00
parent 88bb67e279
commit f0609699ba

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.")