Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit f17209d

Browse files
committed
Update release notes script to ignore merges.
1 parent 10e8198 commit f17209d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/release_notes.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@
66
repo = hg.repository(ui.ui(), '..')
77
changes = [d for d in repo[sys.argv[1]].descendants()]
88
for c in changes:
9-
print c.description()
9+
description = c.description()
10+
if description != 'merge' and description != 'Merge':
11+
print description

0 commit comments

Comments
 (0)