Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
coverage_statistics_to_report = coverage_statistics_to_stdout = True
templates_path = ['_templates']
exclude_patterns = ['_build']
suppress_warnings = ['toc.multiple_toc_parents']

project = 'Sphinx'
copyright = '2007-%Y, the Sphinx developers'
Expand Down
2 changes: 1 addition & 1 deletion sphinx/environment/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ def _check_toc_parents(toctree_includes: dict[str, list[str]]) -> None:

for doc, parents in sorted(toc_parents.items()):
if len(parents) > 1:
logger.info(
logger.warning(
__(
'document is referenced in multiple toctrees: %s, selecting: %s <- %s'
),
Expand Down
Loading