From de29432b72142ba5b7616bb5bb7aba822184da7b Mon Sep 17 00:00:00 2001 From: Florian Sesser <florian@private.storage> Date: Mon, 13 Feb 2023 17:45:14 +0000 Subject: [PATCH] Fix docs build > Warning, treated as error: > Invalid configuration value found: 'language = None'. Update your configuration to a valid language code. Falling back to 'en' (English). --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 747a90a8..f3347073 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,7 +61,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. -- GitLab