Skip to content

Commit

Permalink
Fix missing newline in contributors in tag generation (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
cfernald authored Aug 15, 2023
1 parent 217526a commit 82f9b9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scripts/TagGenerator/TagGenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def generate_notes(version, commits, filepath, url):

notes += "\n## Contributors\n\n"
for contributor in contributors:
notes += f"- {contributor.name} <<{contributor.email}>>"
notes += f"- {contributor.name} <<{contributor.email}>>\n"

notes += "\n"

Expand Down

0 comments on commit 82f9b9c

Please sign in to comment.