summaryrefslogtreecommitdiffstats
path: root/Tools/scripts
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-04-10 03:31:27 (GMT)
committerGuido van Rossum <guido@python.org>2001-04-10 03:31:27 (GMT)
commitf9e56e117f4074f068fd087c18f2d7f3d612258a (patch)
tree7d0cf182374d4615be326449b76a9b70dde09031 /Tools/scripts
parentc32d82446763513394607d7489cae2a401f64e6d (diff)
downloadcpython-f9e56e117f4074f068fd087c18f2d7f3d612258a.zip
cpython-f9e56e117f4074f068fd087c18f2d7f3d612258a.tar.gz
cpython-f9e56e117f4074f068fd087c18f2d7f3d612258a.tar.bz2
Append the revision number for each file to the output.
(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.)
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-xTools/scripts/logmerge.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/logmerge.py b/Tools/scripts/logmerge.py
index 1d9bf2b..d036749 100755
--- a/Tools/scripts/logmerge.py
+++ b/Tools/scripts/logmerge.py
@@ -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))