summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTamara Dahlgren <35777542+tldahlgren@users.noreply.github.com>2023-05-29 01:36:36 -0700
committerGitHub <noreply@github.com>2023-05-29 10:36:36 +0200
commit77ce4701b9304e7acccec37eaaff4301ea6ffbc3 (patch)
tree866d9415095b8a00d2af98b2a2ab42569e33faf6 /lib
parent73ad3f729e8a5206d717d9d66468a19bb11d2940 (diff)
downloadspack-77ce4701b9304e7acccec37eaaff4301ea6ffbc3.tar.gz
spack-77ce4701b9304e7acccec37eaaff4301ea6ffbc3.tar.bz2
spack-77ce4701b9304e7acccec37eaaff4301ea6ffbc3.tar.xz
spack-77ce4701b9304e7acccec37eaaff4301ea6ffbc3.zip
Bugfix/tests: add slash to test log message (#37874)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/build_environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_environment.py b/lib/spack/spack/build_environment.py
index c84456f8bb..b38812d5fb 100644
--- a/lib/spack/spack/build_environment.py
+++ b/lib/spack/spack/build_environment.py
@@ -1373,7 +1373,7 @@ class ChildError(InstallError):
test_log = join_path(os.path.dirname(self.log_name), spack_install_test_log)
if os.path.isfile(test_log):
out.write("\nSee test log for details:\n")
- out.write(" {0}n".format(test_log))
+ out.write(" {0}\n".format(test_log))
return out.getvalue()