From 872764ae129f397007d798d6292037f2dcf907f8 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Wed, 7 Dec 2022 19:00:19 +0200 Subject: [PATCH] doc: fix the language configuration Fix the Sphinx build warning: WARNING: Invalid configuration value found: 'language = None'. Update your configuration to a valid language code. Falling back to 'en' (English). --- doc/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 73590ed5..2ef20afa 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -90,7 +90,7 @@ def napoleon_transform(comment): # # 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.