Skip to content

Commit 5083731

Browse files
committed
fix(conf): set language to a valid value
Sphinx will default to English if this is unset, but it warns about invalid language codes in newer versions. We might as well explicitly set it now. Signed-off-by: Randolph Sapp <[email protected]>
1 parent bed313c commit 5083731

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
#
6464
# This is also used if you do content translation via gettext catalogs.
6565
# Usually you set "language" from the command line for these cases.
66-
language = None
66+
language = 'en'
6767

6868
# There are two options for replacing |today|: either, you set today to some
6969
# non-false value, then it is used:

0 commit comments

Comments
 (0)