Strip trailing periods from changelog entries

This commit is contained in:
Emil Ernerfeldt 2024-01-08 12:19:23 +01:00
parent b087f58c5d
commit 241a5fcda1
1 changed files with 1 additions and 0 deletions

View File

@ -156,6 +156,7 @@ def main() -> None:
for commit_info, pr_info in zip(commit_infos, pr_infos):
hexsha = commit_info.hexsha
title = commit_info.title
title = title.rstrip(".").strip() # Some PR end with an unnecessary period
pr_number = commit_info.pr_number
if pr_number is None: