diff --git a/scripts/gen_ref_pages.py b/scripts/gen_ref_pages.py index c05883a7e..ed9f6aedd 100644 --- a/scripts/gen_ref_pages.py +++ b/scripts/gen_ref_pages.py @@ -9,6 +9,8 @@ src = root / 'src' for path in sorted(src.rglob('*.py')): + if path.name == 'dcs_py.py': + continue module_path = path.relative_to(src).with_suffix('') doc_path = path.relative_to(src / 'dcspy').with_suffix('.md') full_doc_path = Path('reference', doc_path)