Skip to content

Commit

Permalink
Fix missing changelog entries
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnks committed Mar 21, 2024
1 parent 50bab55 commit 7977ea7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion devel_doc/git-changelog
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ class PlainLog(object):
d = {}
nums = set()
ignore = set(IGNORE)
sections = set(SECTIONS)

if self.devel:
commits = shell('git rev-list ' + self.range).split('\n')
Expand Down Expand Up @@ -142,7 +143,7 @@ class PlainLog(object):
if labels & ignore:
continue

labels = labels & HEADINGS.keys()
labels = labels & sections
if not labels:
labels = set(['other'])

Expand Down

0 comments on commit 7977ea7

Please sign in to comment.