Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e6f8c50

Browse files
committed
Use https:// URLs for the bug tracker in the :issue: role.
Thanks to Ezio for noticing this
1 parent 53dfcd8 commit e6f8c50

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/tools/pyspecific.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
:license: Python license.
1010
"""
1111

12-
ISSUE_URI = 'http://bugs.python.org/issue%s'
12+
ISSUE_URI = 'https://bugs.python.org/issue%s'
1313
SOURCE_URI = 'https://hg.python.org/cpython/file/3.4/%s'
1414

1515
from docutils import nodes, utils
@@ -204,7 +204,7 @@ def run(self):
204204
text = 'The NEWS file is not available.'
205205
node = nodes.strong(text, text)
206206
return [node]
207-
content = issue_re.sub(r'`\1ssue #\2 <http://bugs.python.org/\2>`__',
207+
content = issue_re.sub(r'`\1ssue #\2 <https://bugs.python.org/\2>`__',
208208
content)
209209
content = whatsnew_re.sub(r'\1', content)
210210
# remove first 3 lines as they are the main heading

0 commit comments

Comments
 (0)