From 036b69b9bb75a8294fd54c2e6f00f4106d5c450b Mon Sep 17 00:00:00 2001 From: Rafael Fontenelle Date: Tue, 21 Mar 2023 11:19:56 -0300 Subject: [PATCH] Add missing quotes in html 4 deprecation text --- sphinx/builders/html/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index 6f84d9fe5..2bf14672d 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -1316,7 +1316,7 @@ def deprecate_html_4(_app: Sphinx, config: Config) -> None: # RemovedInSphinx70Warning if config.html4_writer: logger.warning(_('Support for emitting HTML 4 output is deprecated and ' - 'will be removed in Sphinx 7. ("html4_writer=True ' + 'will be removed in Sphinx 7. ("html4_writer=True" ' 'detected in configuration options)'))