Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f9e56e1

Browse files
committed
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.)
1 parent c32d824 commit f9e56e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/scripts/logmerge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def format_output(database):
126126
if prev:
127127
print sep2,
128128
for (p_date, p_working_file, p_rev, p_author) in prev:
129-
print p_date, p_author, p_working_file
129+
print p_date, p_author, p_working_file, p_rev
130130
sys.stdout.writelines(prevtext)
131131
prev = []
132132
prev.append((date, working_file, rev, author))

0 commit comments

Comments
 (0)