diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/utils.py b/docs/utils.py index 8bc69ccd..6afbeec0 100644 --- a/docs/utils.py +++ b/docs/utils.py @@ -72,7 +72,7 @@ def cleanup() -> None: included = __get_included() for file in (PROJECT_ROOT / "docs" / "output").iterdir(): - if file.name in ("botcore.rst", "botcore.exts.rst") and file.name in included: + if file.name in ("botcore.rst", "botcore.exts.rst", "botcore.utils.rst") and file.name in included: content = file.read_text(encoding="utf-8").splitlines(keepends=True) # Rename the extension to be less wordy |