From b88ac3359daa75ae3c5b1a534ba320f4d8d29fbb Mon Sep 17 00:00:00 2001 From: Tony Wasserka Date: Wed, 22 Jan 2025 19:24:54 +0100 Subject: [PATCH] Scripts: Fix indentation of changelog items GitHub's markdown parser requires at least 2 spaces to open a new level of indentation. --- Scripts/changelog_generator.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Scripts/changelog_generator.py b/Scripts/changelog_generator.py index cc5127d26d..172be0f82d 100755 --- a/Scripts/changelog_generator.py +++ b/Scripts/changelog_generator.py @@ -47,10 +47,10 @@ if Tag != tag and tag != category: Tag = tag print("") - print(" - " + tag.split("/")[1]) - + print(" - " + tag.split("/")[1]) + for change in item[1]: if Tag == "": - print(" - " + change) - else: print(" - " + change) + else: + print(" - " + change)