From 12494275f6c349f06cb8ee27c913398fe0ad0b6e Mon Sep 17 00:00:00 2001 From: Scott Little Date: Thu, 14 Sep 2023 10:46:44 -0400 Subject: [PATCH] doc: Fix Zuul/tox failures This commit resolves the Zuul/tox failures encountered when running sphinx to generate documentation, which in turn prevents merging changes that are otherwise fine: The issue is related to a Sphinx update that requires the language parameter to be specified: https://github.com/sphinx-doc/sphinx/issues/10062 https://github.com/sphinx-doc/sphinx/issues/10474 Partial-Bug: 1976377 Partial-Bug: 2033431 Signed-off-by: Scott Little Change-Id: Ifa3d4638955ddd2ff9f2acd9225657c16958a03a --- 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 d6c8e39..4447bf3 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -60,7 +60,7 @@ master_doc = 'index' # # 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.