Skip to content

Commit

Permalink
Builder: Ignore "merge commit" entries in feeds
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 13, 2012
1 parent 5988494 commit 92138d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distrib/builder/changes.py
Expand Up @@ -81,7 +81,7 @@ def __init__(self, fromTag, toTag):
self.parse()

def should_ignore(self, subject):
if subject.startswith("Merge branch"):
if subject.startswith("Merge branch") or subject.startswith("Merge commit"):
# Branch merges are not listed.
return True
return False
Expand Down

0 comments on commit 92138d4

Please sign in to comment.