Skip to content

Commit 010ef0f

Browse files
committed
Fix ReleaseNotes build
for some reason (clearly another change somewhere in the Sphinx) extlinks extension used in the releasenotes is failing when extlink caption is not having substitues same as in the link itself. > title = caption % part > ~~~~~~~~^~~~~~ > TypeError: not all arguments converted during string formatting Now the extension supports setting link capturion to None which works as we need. Change-Id: Ie1a61e9b3ee5d727d59525efe34aea696538e2b3
1 parent 78988d1 commit 010ef0f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

releasenotes/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@
6363
extlinks = {
6464
'lpbug': (
6565
'https://bugs.launchpad.net/bugs/%s',
66-
'Bug ',
66+
'Bug %s',
6767
),
6868
'oscbp': (
6969
'https://blueprints.launchpad.net/python-openstackclient/+spec/%s',
70-
'',
70+
None,
7171
),
7272
'oscdoc': (
7373
'https://docs.openstack.org/python-openstackclient/latest/%s.html',
74-
'',
74+
None,
7575
),
7676
}
7777

0 commit comments

Comments
 (0)