diff --git a/tools/ChangelogGenerator/changelog_generator.py b/tools/ChangelogGenerator/changelog_generator.py index 9ba8658c90..01111dd3a3 100644 --- a/tools/ChangelogGenerator/changelog_generator.py +++ b/tools/ChangelogGenerator/changelog_generator.py @@ -337,7 +337,7 @@ def main(tag_name=None, latest=None): rf'git show -s --format=%b%n {commit_hash}' ) raw_git_shows = call_command(git_show_command) - for commit_body in raw_git_shows.split("\n\n"): + for commit_body in raw_git_shows.split("\n"): if not commit_body.startswith("* ") and "[skip changelog]" in commit_body: raw_commits_info[commit_hash]["skip"] = True