From 4a8800c5c9e7d170c97e82925c64dd3a4bafcdea Mon Sep 17 00:00:00 2001 From: stevenknight Date: Fri, 8 Oct 2004 02:07:05 +0000 Subject: [PATCH] Add a missing newline to the end of the --debug=explain unknown git-svn-id: http://scons.tigris.org/svn/scons/trunk@1122 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- 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 80c14d12..0b647c9f 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 06bf6d65..27e185e8 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: -- 2.26.2