diff options
author | Daniel Moody <daniel.moody@mongodb.com> | 2022-01-24 20:53:40 (GMT) |
---|---|---|
committer | Daniel Moody <daniel.moody@mongodb.com> | 2022-01-24 20:53:40 (GMT) |
commit | aed511ce545afc16bd8704eafd869be10b23d0a6 (patch) | |
tree | 611990aff5be907bfdb8705b2aab9f0005878341 | |
parent | 7b3960d9865ead96d5c541be231ec7f62d8b6ab7 (diff) | |
download | SCons-aed511ce545afc16bd8704eafd869be10b23d0a6.zip SCons-aed511ce545afc16bd8704eafd869be10b23d0a6.tar.gz SCons-aed511ce545afc16bd8704eafd869be10b23d0a6.tar.bz2 |
added missing newline to cachedir debug message.
-rw-r--r-- | SCons/CacheDir.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |