From 9b89b07c1957f864875cbc2d27e0cccb5980f426 Mon Sep 17 00:00:00 2001 From: Lars Erik Wik Date: Thu, 23 Apr 2026 13:10:22 +0200 Subject: [PATCH] Revert "Merge pull request #6088 from larsewi/revert-changelog-generator-markdown-3.24.x" This reverts commit ee53eab2a6bddc196cb90324d3fdd3cce2d02d80, reversing changes made to d03454e3ac062a0e351fa786a2b48a9894346231. --- misc/changelog-generator/changelog-generator | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/changelog-generator/changelog-generator b/misc/changelog-generator/changelog-generator index 469cd1e1d8..8e5f310740 100755 --- a/misc/changelog-generator/changelog-generator +++ b/misc/changelog-generator/changelog-generator @@ -254,12 +254,12 @@ for sha_entry in ENTRIES: if SORT_CHANGELOG: entry_list.sort() for entry in entry_list: - entry = "\t- " + entry + entry = "- " + entry # Blank lines look bad in changelog because entries don't have blank lines # between them, so remove that from commit messages. entry = re.sub("\n\n+", "\n", entry) - # Indent all lines. - entry = entry.replace("\n", "\n\t ") + # Indent continuation lines to align with the bullet text. + entry = entry.replace("\n", "\n ") print(entry) for missed in POSSIBLE_MISSED_TICKETS: