summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Harney <eharney@redhat.com>2023-03-21 11:28:33 -0400
committerEric Harney <eharney@redhat.com>2023-03-21 11:28:33 -0400
commita2078f4e092f53720bde5f060a1014939609a474 (patch)
treeb1a24b5854c5a7ef2f23b4d832e5ef1c5490a735
parentdd73b125d11769522d186f37891ce52d3f164900 (diff)
downloadtaskflow-a2078f4e092f53720bde5f060a1014939609a474.tar.gz
Fix doc building with Sphinx 6.0
Fix Sphinx 6.0 doc build error. Change-Id: I9a1571cf416d32d040d8ff05d1c8b1769d1d0558
-rw-r--r--doc/source/conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index b46a5a8..d1006bb 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -68,8 +68,8 @@ modindex_common_prefix = ['taskflow.']
# Shortened external links.
source_tree = 'https://opendev.org/openstack/taskflow/src/branch/master/'
extlinks = {
- 'example': (source_tree + '/taskflow/examples/%s.py', ''),
- 'pybug': ('http://bugs.python.org/issue%s', ''),
+ 'example': (source_tree + '/taskflow/examples/%s.py', '%s'),
+ 'pybug': ('http://bugs.python.org/issue%s', '%s'),
}