Skip to content

Commit

Permalink
Fix inconsistent changelog generation (#10241)
Browse files Browse the repository at this point in the history
* Fix inconsistent changelog generation

* dammit
  • Loading branch information
Absolucy authored Dec 1, 2023
1 parent 5d7f31a commit 0cdbee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/changelog/generate_cl.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from github import Github, InputGitAuthor
from ruamel import yaml

CL_BODY = re.compile(r":cl:(.+)?\r\n((.|\n|\r)+?)\r\n\/:cl:", re.MULTILINE)
CL_BODY = re.compile(r":cl:(.+)?[\r\n]+((.|\n|\r)+?)[\r\n]+/:cl:", re.MULTILINE)
CL_SPLIT = re.compile(r"(^\w+):\s+(\w.+)", re.MULTILINE)

git_email = os.getenv("GIT_EMAIL")
Expand Down

0 comments on commit 0cdbee4

Please sign in to comment.