Skip to content

Commit

Permalink
DEV: Minor fix in make_changelog.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinThoma committed Apr 24, 2022
1 parent 5bc7219 commit e673a6e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions make_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ def parse_commit_line(line) -> Change:
# Standardize
message.strip()

if message.endswith('"'):
message = message[:-1]

prefix = prefix.strip()
if prefix == "DOCS":
prefix = "DOC"
Expand Down

0 comments on commit e673a6e

Please sign in to comment.