summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk.cvs.github@sydorenko.org.ua>2018-02-03 20:16:08 +0100
committerGitHub <noreply@github.com>2018-02-03 20:16:08 +0100
commitef50748606b067d2f95fc29519188b1b6d4faee2 (patch)
treeff7c73334df92f9deac4a27babd85cf055721423 /docs/conf.py
parentcfb53cde0fb4228ce136c9279720111b6c422a00 (diff)
downloadcherrypy-git-ef50748606b067d2f95fc29519188b1b6d4faee2.tar.gz
Fix PR extlinks in sphinx config
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py
index d42c6108..fecc3d92 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -91,10 +91,10 @@ extensions = [
extlinks = {
'issue': (f'{github_repo_url}/issues/%s', '#'),
- 'pr': (f'{github_repo_url}/pulls/%s', 'PR #'),
+ 'pr': (f'{github_repo_url}/pull/%s', 'PR #'),
'commit': (f'{github_repo_url}/commit/%s', ''),
'cr-issue': (f'{cr_github_repo_url}/issues/%s', 'Cheroot #'),
- 'cr-pr': (f'{cr_github_repo_url}/pulls/%s', 'Cheroot PR #'),
+ 'cr-pr': (f'{cr_github_repo_url}/pull/%s', 'Cheroot PR #'),
'gh': (f'{github_url}/%s', 'GitHub: '),
}