Fix missing space in error message output (#3169)
This commit is contained in:
parent
682d5cf164
commit
38dd01f6b5
@ -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.")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user