Skip to content

Commit

Permalink
Scripts: Fix indentation of changelog items
Browse files Browse the repository at this point in the history
GitHub's markdown parser requires at least 2 spaces to open a new level
of indentation.
  • Loading branch information
neobrain committed Jan 22, 2025
1 parent 1aa8c6f commit b88ac33
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Scripts/changelog_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit b88ac33

Please sign in to comment.