From aed511ce545afc16bd8704eafd869be10b23d0a6 Mon Sep 17 00:00:00 2001 From: Daniel Moody Date: Mon, 24 Jan 2022 14:53:40 -0600 Subject: added missing newline to cachedir debug message. --- SCons/CacheDir.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SCons/CacheDir.py b/SCons/CacheDir.py index 8be6643..14e52ad 100644 --- a/SCons/CacheDir.py +++ b/SCons/CacheDir.py @@ -125,7 +125,7 @@ def CachePushFunc(target, source, env): # In any case, inability to push a file to cache doesn't affect # the correctness of the build, so just print a warning. msg = errfmt % (str(t), cachefile) - cd.CacheDebug(errfmt, str(t), cachefile) + cd.CacheDebug(errfmt + '\n', str(t), cachefile) SCons.Warnings.warn(SCons.Warnings.CacheWriteErrorWarning, msg) CachePush = SCons.Action.Action(CachePushFunc, None) -- cgit v0.12