From c00480d7e2143ae0bda99aa76f26d430dbd93ab6 Mon Sep 17 00:00:00 2001 From: manchandavishal Date: Mon, 25 Sep 2023 12:12:29 +0530 Subject: [PATCH] Fix sphinx extlinks captions for releasenotes job We are hitting https://github.com/sphinx-doc/sphinx/issues/11094 due to changes in Sphinx. Change-Id: I10f192575d033676b5a4b1f8512bba93d381045a --- releasenotes/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/releasenotes/source/conf.py b/releasenotes/source/conf.py index d6e4b9dc30..04067c0037 100644 --- a/releasenotes/source/conf.py +++ b/releasenotes/source/conf.py @@ -54,11 +54,11 @@ openstackdocs_bug_tag = 'documentation' extlinks = { 'bug': ( 'https://bugs.launchpad.net/bugs/%s', - 'bug ', + 'bug:%s', ), 'blueprint': ( 'https://blueprints.launchpad.net/horizon/+spec/%s', - 'blueprint ', + 'blueprint:%s', ), }