From 496c207a26f3777e921dd1fd34be01a7935f50c6 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Thu, 27 Nov 2014 05:08:07 +0200 Subject: [PATCH] Fix ref URL of the pr role. --- docs/gunicorn_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gunicorn_ext.py b/docs/gunicorn_ext.py index ffb36e74..839b523c 100755 --- a/docs/gunicorn_ext.py +++ b/docs/gunicorn_ext.py @@ -74,7 +74,7 @@ def issue_role(typ, rawtext, text, lineno, inliner, options={}, content=[]): def pull_request_role(typ, rawtext, text, lineno, inliner, options={}, content=[]): issue = utils.unescape(text) text = 'pull request ' + issue - refnode = nodes.reference(text, text, refuri=ISSUE_URI % issue) + refnode = nodes.reference(text, text, refuri=PULL_REQUEST_URI % issue) return [refnode], []