From 04e621b5bdebef8d99755e445eda9e378428c4a8 Mon Sep 17 00:00:00 2001 From: Elod Illes Date: Mon, 13 Nov 2023 16:52:53 +0100 Subject: [PATCH] Fix releasenotes build When building releasenotes (with 'tox -e releasenotes') the job fails with the following error: WARNING: Invalid configuration value found: 'language = None'. Update your configuration to a valid language code. Falling back to 'en' (English). This caused publish-openstack-releasenotes-python3 post release job failure as well. By removing the explicit set of language of None makes the sphinx warning disappear. Change-Id: I2482824f78901e14781bde49674bde4a9fd431ec --- doc/source/conf.py | 2 +- releasenotes/source/conf.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 6d094a1..fe26400 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -82,7 +82,7 @@ bug_tag = '' # # 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 = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index af9113c..7be580d 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -82,7 +82,7 @@ bug_tag = '' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. -language = None +# language = None # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: