Strip trailing periods from changelog entries
This commit is contained in:
parent
b087f58c5d
commit
241a5fcda1
|
|
@ -156,6 +156,7 @@ def main() -> None:
|
||||||
for commit_info, pr_info in zip(commit_infos, pr_infos):
|
for commit_info, pr_info in zip(commit_infos, pr_infos):
|
||||||
hexsha = commit_info.hexsha
|
hexsha = commit_info.hexsha
|
||||||
title = commit_info.title
|
title = commit_info.title
|
||||||
|
title = title.rstrip(".").strip() # Some PR end with an unnecessary period
|
||||||
pr_number = commit_info.pr_number
|
pr_number = commit_info.pr_number
|
||||||
|
|
||||||
if pr_number is None:
|
if pr_number is None:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue