1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

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

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: