Skip to content

Commit 5f31a1f

Browse files
committed
Simpler month_line
1 parent 8521680 commit 5f31a1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tagging/update_wiki.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def update_home_wiki_page(wiki_dir: Path, month: str) -> None:
1616
"""
1717
wiki_home_file = wiki_dir / "Home.md"
1818
wiki_home_content = wiki_home_file.read_text()
19-
month_line = f"| `{month}` | [`link`](./{month}) |\n"
19+
month_line = f"| [`{month}`](./{month}) |\n"
2020
if month_line not in wiki_home_content:
2121
wiki_home_content = wiki_home_content.replace(
2222
TABLE_BEGINNING, TABLE_BEGINNING + month_line

0 commit comments

Comments
 (0)