Fix missing space in error message output (#3169)

This commit is contained in:
Adam J. Stewart 2017-02-17 14:02:48 -06:00 committed by Todd Gamblin
parent 682d5cf164
commit 38dd01f6b5

View File

@ -473,8 +473,8 @@ class UnavailableCompilerVersionError(spack.error.SpackError):
def __init__(self, compiler_spec, operating_system, target): def __init__(self, compiler_spec, operating_system, target):
super(UnavailableCompilerVersionError, self).__init__( super(UnavailableCompilerVersionError, self).__init__(
"No available compiler version matches '%s' on operating_system %s" "No available compiler version matches '%s' on operating_system "
"for target %s" "'%s' for target '%s'"
% (compiler_spec, operating_system, target), % (compiler_spec, operating_system, target),
"Run 'spack compilers' to see available compiler Options.") "Run 'spack compilers' to see available compiler Options.")