Add missing space in error msg (#38863)

This commit is contained in:
Adam J. Stewart 2023-07-13 03:24:02 -05:00 committed by GitHub
parent 33c2fd7228
commit b67f1f395b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -515,7 +515,7 @@ def compiler_for_spec(compiler_spec, arch_spec):
if len(compilers) < 1: if len(compilers) < 1:
raise NoCompilerForSpecError(compiler_spec, arch_spec.os) raise NoCompilerForSpecError(compiler_spec, arch_spec.os)
if len(compilers) > 1: if len(compilers) > 1:
msg = "Multiple definitions of compiler %s" % compiler_spec msg = "Multiple definitions of compiler %s " % compiler_spec
msg += "for architecture %s:\n %s" % (arch_spec, compilers) msg += "for architecture %s:\n %s" % (arch_spec, compilers)
tty.debug(msg) tty.debug(msg)
return compilers[0] return compilers[0]