From 80f1e309028d266b60b33324e7e74675279a7131 Mon Sep 17 00:00:00 2001 From: Radomir Dopieralski Date: Wed, 30 Aug 2023 10:04:34 +0200 Subject: [PATCH] Fix sphinx extlinks captions We are hitting https://github.com/sphinx-doc/sphinx/issues/11094 due to changes in Sphinx. Change-Id: Ie2d271c8cfbccd21aae1902ede49ac22321a67c6 --- doc/source/conf.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index b053dfa877..191b01ef27 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -81,15 +81,15 @@ openstackdocs_pdf_link = True extlinks = { 'opendev-repo': ( 'https://opendev.org/%s', - '', + None, ), 'launchpad': ( 'https://bugs.launchpad.net/%s', - 'launchpad ', + 'launchpad:%s', ), 'storyboard': ( 'https://storyboard.openstack.org/#!/project/%s', - 'storyboard ', + 'storyboard:%s', ), }