diff options
| author | 2022-02-24 16:20:07 +0000 | |
|---|---|---|
| committer | 2022-02-24 17:32:48 +0000 | |
| commit | aed1a762d97863b136e51e5d3a95d1333492dc72 (patch) | |
| tree | fb11fa1f51902b477ec53720477959c5f3a01ca9 /docs | |
| parent | Consistently use double backticks when referring to a variable name. (diff) | |
Include utils package in doc cleanup funciton
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  |