From 5d83469c27554552f2aa71879d94cece9f6c7c06 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Thu, 11 May 2023 16:33:49 -0700 Subject: [PATCH] doc/dev: Set language code explicitly in Sphinx configuration - To avoid the following error when running Sphinx v5.3.0: "WARNING: Invalid configuration value found: 'language = None'. Update your configuration to a valid language code. Falling back to 'en' (English)." Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- doc/dev/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/dev/conf.py b/doc/dev/conf.py index 252676132..42deaba26 100644 --- a/doc/dev/conf.py +++ b/doc/dev/conf.py @@ -63,7 +63,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.