From b876cfe5e1242afb520de9303a51fd0a5c547463 Mon Sep 17 00:00:00 2001 From: Cole Walker Date: Tue, 31 May 2022 10:23:49 -0400 Subject: [PATCH] Fix tox-docs failing sphinx A new version of sphinx was released May 29 2022 which requires a language setting in conf.py otherwise a warning (treated as an error) causes the sphinx operation to fail. Updating the sphinx config file to correct the issue. Closes-Bug: 1976385 Signed-off-by: Cole Walker Change-Id: I3ee669632b214ec02da8fa7789fb1a7499c2303f --- 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 3c5e255..0d608f0 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -61,7 +61,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' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files.