Skip to content

Commit 82f9b9c

Browse files
authored
Fix missing newline in contributors in tag generation (#225)
1 parent 217526a commit 82f9b9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Scripts/TagGenerator/TagGenerator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def generate_notes(version, commits, filepath, url):
192192

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

197197
notes += "\n"
198198

0 commit comments

Comments
 (0)