diff options
Diffstat (limited to 'sphinx/environment/managers/toctree.py')
-rw-r--r-- | sphinx/environment/managers/toctree.py | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/sphinx/environment/managers/toctree.py b/sphinx/environment/managers/toctree.py index 64937b7fa..1df3f0999 100644 --- a/sphinx/environment/managers/toctree.py +++ b/sphinx/environment/managers/toctree.py @@ -317,15 +317,13 @@ class Toctree(EnvironmentManager): refnode.children = [nodes.Text(title)] if not toc.children: # empty toc means: no titles will show up in the toctree - logger.warn_node( - 'toctree contains reference to document %r that ' - 'doesn\'t have a title: no link will be generated' - % ref, toctreenode) + logger.warning('toctree contains reference to document %r that ' + 'doesn\'t have a title: no link will be generated', + ref, location=toctreenode) except KeyError: # this is raised if the included file does not exist - logger.warn_node( - 'toctree contains reference to nonexisting document %r' - % ref, toctreenode) + logger.warning('toctree contains reference to nonexisting document %r', + ref, location=toctreenode) else: # if titles_only is given, only keep the main title and # sub-toctrees |