Add a missing newline to the end of the --debug=explain unknown
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 8 Oct 2004 02:07:05 +0000 (02:07 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 8 Oct 2004 02:07:05 +0000 (02:07 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@1122 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/CHANGES.txt
src/engine/SCons/Node/__init__.py

index 80c14d129232d93b811312d32c3c82b55688e254..0b647c9f24b8f2b6c8fe2b7ef8e70d0f6313ae47 100644 (file)
@@ -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
index 06bf6d650e2ce9283f33df71f5cecb059a72593f..27e185e88e008022ac1c1f6dd5b714f812706265 100644 (file)
@@ -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: