We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fc3bf0 commit 332aac5Copy full SHA for 332aac5
tagging/update_wiki.py
@@ -111,7 +111,7 @@ def update_monthly_wiki_page(
111
year = year_month[:4]
112
monthly_page = wiki_dir / "monthly-files" / year / (year_month + ".md")
113
if not monthly_page.exists():
114
- monthly_page.parent.mkdir(exist_ok=True)
+ monthly_page.parent.mkdir(parents=True, exist_ok=True)
115
monthly_page.write_text(MONTHLY_PAGE_HEADER)
116
LOGGER.info(f"Created monthly page: {monthly_page.relative_to(wiki_dir)}")
117
0 commit comments