From a9eef36c2591412b28f13ff2fd3a827f7eeb309b Mon Sep 17 00:00:00 2001 From: Lucas Alvares Gomes Date: Wed, 25 Jan 2023 09:56:22 -0300 Subject: [PATCH] Fix tox -e releasenotes Fix the "openstackdocs_auto_name" configuration value type, otherwise the command will fail with the following error: Warning, treated as error: The config value `openstackdocs_auto_name' has type `str', defaults to `bool'. Signed-off-by: Lucas Alvares Gomes Change-Id: Id130a0dd9eabc2ed8847b25e8787947086863f79 --- releasenotes/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index b769b549..8c5e3ded 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -59,7 +59,7 @@ copyright = u'2017, OpenStack Developers' openstackdocs_repo_name = 'x/ovn-bgp-agent' openstackdocs_bug_project = 'ovn-bgp-agent' openstackdocs_bug_tag = '' -openstackdocs_auto_name = 'False' +openstackdocs_auto_name = False # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the