diff options
Diffstat (limited to 'doc/tools/make_rst.py')
-rwxr-xr-x | doc/tools/make_rst.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tools/make_rst.py b/doc/tools/make_rst.py index 1f71b77cbd..3655a60c35 100755 --- a/doc/tools/make_rst.py +++ b/doc/tools/make_rst.py @@ -567,7 +567,7 @@ def main() -> None: if path.endswith("/") or path.endswith("\\"): path = path[:-1] - if os.path.basename(path) == "modules": + if os.path.basename(path) in ["modules", "platform"]: for subdir, dirs, _ in os.walk(path): if "doc_classes" in dirs: doc_dir = os.path.join(subdir, "doc_classes") |