From b9cc232de3d1b91989a3c228c21d3d0a51cf2f31 Mon Sep 17 00:00:00 2001 From: Agustin Carranza Date: Tue, 29 Aug 2023 10:06:31 -0300 Subject: [PATCH] Fix sphinx configuration for tox docs With sphinx version update, it is raised a warning (treated as error) with the 'language = None' configuration. The default value is 'language = en' which has the same behavior. Test plan PASS: Run tox and check it ends successfully. Closes-bug: 2033412 Related-Bug: #1976377 Change-Id: Ie003c0a02fcfc6f237ae5b3efb259de6748077ad Signed-off-by: Agustin Carranza --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 0b18553e..abf687c1 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -63,7 +63,7 @@ openstackdocs_auto_name = False # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = 'en' # Default value # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files.