diff --git a/misc/changelog-generator/changelog-generator b/misc/changelog-generator/changelog-generator index 8e5f310740..469cd1e1d8 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 = "- " + entry + entry = "\t- " + 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 continuation lines to align with the bullet text. - entry = entry.replace("\n", "\n ") + # Indent all lines. + entry = entry.replace("\n", "\n\t ") print(entry) for missed in POSSIBLE_MISSED_TICKETS: