[3.0.x] Made default_role_error use logger.
This prevents raising errors for translated docs, see https://github.com/django/djangoproject.com/issues/997 Follow up to 1cdfe8d91215eefaa18c398069dd9c6879a9511d. Backport of 36a2e9607e3069e875eedfd814d4473d9b6811cb from master
This commit is contained in:
parent
c1dc423f10
commit
683d01b0ef
@ -11,11 +11,10 @@ from docutils.statemachine import ViewList
|
||||
from sphinx import addnodes
|
||||
from sphinx.builders.html import StandaloneHTMLBuilder
|
||||
from sphinx.directives.code import CodeBlock
|
||||
from sphinx.errors import SphinxError
|
||||
from sphinx.domains.std import Cmdoption
|
||||
from sphinx.errors import ExtensionError
|
||||
from sphinx.util import logging
|
||||
from sphinx.util.console import bold, red
|
||||
from sphinx.util.console import bold
|
||||
from sphinx.writers.html import HTMLTranslator
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
@ -379,8 +378,9 @@ def default_role_error(
|
||||
name, rawtext, text, lineno, inliner, options=None, content=None
|
||||
):
|
||||
msg = (
|
||||
"Default role used (`single backticks`) at line %s: %s. Did you mean "
|
||||
"to use two backticks for ``code``, or miss an underscore for a "
|
||||
"`link`_ ?" % (lineno, rawtext)
|
||||
"Default role used (`single backticks`): %s. Did you mean to use two "
|
||||
"backticks for ``code``, or miss an underscore for a `link`_ ?"
|
||||
% rawtext
|
||||
)
|
||||
raise SphinxError(red(msg))
|
||||
logger.warning(msg, location=(inliner.document.current_source, lineno))
|
||||
return [nodes.Text(text)], []
|
||||
|
Loading…
x
Reference in New Issue
Block a user