From 4380b28759747445197f7f8ad1d695bc09152af5 Mon Sep 17 00:00:00 2001 From: Anil Belur Date: Sat, 23 Jul 2022 08:02:54 +1000 Subject: [PATCH] Fix: Set default language to 'en' Fixes the following Sphinx warning (treated as error) starting with 5.0 release: Warning, treated as error: Invalid configuration value found: 'language = None'. Update your configuration to a valid langauge code. Falling back to 'en' (English). Signed-off-by: Anil Belur Change-Id: I5d303131925c79757370864cc179cbe8154a2f4d --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index f3709ea..f5a7479 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -97,7 +97,7 @@ release = version # # 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' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: -- 2.16.6