Skip to content

Commit

Permalink
MAINT: Strip whitespace from message (#3031)
Browse files Browse the repository at this point in the history
  • Loading branch information
j-t-1 authored Jan 8, 2025
1 parent 97706c5 commit c6dcdc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def parse_commit_line(line: str, authors: Dict[str, str]) -> Change:
message = rest

# Standardize
message.strip()
message = message.strip()
commit_hash = commit_hash.strip()

author_login = authors[commit_hash]
Expand Down

0 comments on commit c6dcdc6

Please sign in to comment.