From 94c0c7bf4cf4e35e73ce10fdb1b795fbf7ff1d2e Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Fri, 8 Oct 2004 02:07:05 +0000 Subject: Add a missing newline to the end of the --debug=explain unknown --- src/CHANGES.txt | 3 +++ src/engine/SCons/Node/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 80c14d1..0b647c9 100644 --- a/src/CHANGES.txt +++ b/src/CHANGES.txt @@ -88,6 +88,9 @@ RELEASE 0.97 - XXX - Fix env.SConscript() when called with a list of SConscipt files. (The SConscript() global function already worked properly.) + - Add a missing newline to the end of the --debug=explain "unknown + reasons" message. + From Clive Levinson: - Make ParseConfig() recognize and add -mno-cygwin to $LINKFLAGS and diff --git a/src/engine/SCons/Node/__init__.py b/src/engine/SCons/Node/__init__.py index 06bf6d6..27e185e 100644 --- a/src/engine/SCons/Node/__init__.py +++ b/src/engine/SCons/Node/__init__.py @@ -925,7 +925,7 @@ class Node: fmt_with_title('new: ', newact)) if len(lines) == 0: - return "rebuilding `%s' for unknown reasons" % self + return "rebuilding `%s' for unknown reasons\n" % self preamble = "rebuilding `%s' because" % self if len(lines) == 1: -- cgit v0.12