From 5ef383f57206413a4db42d741539fddf8c389cab Mon Sep 17 00:00:00 2001 From: Dimitri Huisman Date: Tue, 7 Jun 2022 11:20:07 +0000 Subject: [PATCH] Set language to English for sphinx in conf.py. The docs have always been generated with the option to treat warnings as errors. Recently sphinx-build reports using language=None as a warning. It is expected that a specific language is set. --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index c753fef4..22bc1282 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ project = 'Mailu' copyright = '2018, Mailu authors' author = 'Mailu authors' version = release = os.environ.get('VERSION', 'master') -language = None +language = 'en' exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'Dockerfile', 'docker-compose.yml'] pygments_style = 'sphinx' todo_include_todos = False