]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Add empty line between changelogs discord entries (#38170)
authorRed <96445749+TheShuEd@users.noreply.github.com>
Fri, 18 Jul 2025 11:20:20 +0000 (14:20 +0300)
committerGitHub <noreply@github.com>
Fri, 18 Jul 2025 11:20:20 +0000 (13:20 +0200)
Update actions_changelogs_since_last_run.py

Tools/actions_changelogs_since_last_run.py

index 4337980c14473222ff192abfddefa9bb55450c66..fa1f66c76b60383105d6ecee48f87384fefd0387 100755 (executable)
@@ -173,6 +173,7 @@ def changelog_entries_to_message_lines(entries: Iterable[ChangelogEntry]) -> lis
     message_lines = []
 
     for contributor_name, group in itertools.groupby(entries, lambda x: x["author"]):
+        message_lines.append("\n")
         message_lines.append(f"**{contributor_name}** updated:\n")
 
         for entry in group: