]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Append the revision number for each file to the output.
authorGuido van Rossum <guido@python.org>
Tue, 10 Apr 2001 03:31:27 +0000 (03:31 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 10 Apr 2001 03:31:27 +0000 (03:31 +0000)
(Yes, this is a new feature right before the 2.1 release.  No, I can't
imagine this would seriously break anybody's code.  In fact, most
users of this script are probably *happy* to see this addition.)

Tools/scripts/logmerge.py

index 1d9bf2b1d1d5312c7ac231557bdf8054e970aec9..d036749bebcb7914c383fd5a304eab0e421fa0a9 100755 (executable)
@@ -126,7 +126,7 @@ def format_output(database):
             if prev:
                 print sep2,
                 for (p_date, p_working_file, p_rev, p_author) in prev:
-                    print p_date, p_author, p_working_file
+                    print p_date, p_author, p_working_file, p_rev
                 sys.stdout.writelines(prevtext)
             prev = []
         prev.append((date, working_file, rev, author))