diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2017-02-17 14:02:48 -0600 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-02-17 12:02:48 -0800 |
commit | 38dd01f6b5c8275fbf386910fa7fe3a0b62d8cd2 (patch) | |
tree | 5ee50c465f4891c00c2d4e5c73ff29475ed86ac2 /lib | |
parent | 682d5cf1649b2f6304887aac6e5428308f65906a (diff) | |
download | spack-38dd01f6b5c8275fbf386910fa7fe3a0b62d8cd2.tar.gz spack-38dd01f6b5c8275fbf386910fa7fe3a0b62d8cd2.tar.bz2 spack-38dd01f6b5c8275fbf386910fa7fe3a0b62d8cd2.tar.xz spack-38dd01f6b5c8275fbf386910fa7fe3a0b62d8cd2.zip |
Fix missing space in error message output (#3169)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/concretize.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/concretize.py b/lib/spack/spack/concretize.py index 36e8b30196..bc3675ad84 100644 --- a/lib/spack/spack/concretize.py +++ b/lib/spack/spack/concretize.py @@ -473,8 +473,8 @@ class UnavailableCompilerVersionError(spack.error.SpackError): def __init__(self, compiler_spec, operating_system, target): super(UnavailableCompilerVersionError, self).__init__( - "No available compiler version matches '%s' on operating_system %s" - "for target %s" + "No available compiler version matches '%s' on operating_system " + "'%s' for target '%s'" % (compiler_spec, operating_system, target), "Run 'spack compilers' to see available compiler Options.") |