Skip to content

Commit da791b9

Browse files
authored
Use correct var
1 parent d2102a1 commit da791b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def _generate_includes(app: Sphinx) -> None:
4545
# Use absolute paths based on this file's location
4646
root_dir = Path(__file__).parent.absolute().parent
4747
gen_dir = Path(__file__).parent.absolute() / "generated"
48-
_GEN_DIR.mkdir(parents=True, exist_ok=True)
48+
gen_dir.mkdir(parents=True, exist_ok=True)
4949

5050
for file in ("CHANGELOG.md", "README.md"):
5151
content = (root_dir / file).read_text(encoding="utf-8")

0 commit comments

Comments
 (0)