Skip to content

Commit e4224fc

Browse files
committed
fix: sphinx "invalid language code"
Problem: docs: commands[0] …/docs> sphinx-build -b html -d …/.tox/docs/tmp/doctrees . …/py Running Sphinx v6.2.1 WARNING: Invalid configuration value found: 'language = None'. Update your configuration to a valid language code. Falling back to 'en' (English). Solution: Set language.
1 parent 61bf6fa commit e4224fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
#
6969
# This is also used if you do content translation via gettext catalogs.
7070
# Usually you set "language" from the command line for these cases.
71-
language = None
71+
language = 'en'
7272

7373
# List of patterns, relative to source directory, that match files and
7474
# directories to ignore when looking for source files.

0 commit comments

Comments
 (0)