Skip to content

Commit 2c53c01

Browse files
authored
Improve patchlist formatting
1 parent dff181a commit 2c53c01

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/gen-markdown-patchlist.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,11 @@
1515
if key.startswith("modernfix.option.mixin."):
1616
option_names.append(key.replace("modernfix.option.", ""))
1717
option_names.sort()
18-
print("# Summary of Patches - " + branch_name)
1918
print()
2019
for option in option_names:
2120
option_description = lang_obj.get("modernfix.option." + option)
2221
option_friendly_name = lang_obj.get("modernfix.option.name." + option)
23-
print(f"# `{option}`")
22+
print(f"### `{option}`")
2423
print()
2524
if option_description is not None:
2625
print(option_description)

0 commit comments

Comments
 (0)