Skip to content

Commit

Permalink
Use https:// URLs for the bug tracker in the :issue: role.
Browse files Browse the repository at this point in the history
Thanks to Ezio for noticing this
  • Loading branch information
alex committed Oct 13, 2014
1 parent 53dfcd8 commit e6f8c50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Doc/tools/pyspecific.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
:license: Python license.
"""

ISSUE_URI = 'http://bugs.python.org/issue%s'
ISSUE_URI = 'https://bugs.python.org/issue%s'
SOURCE_URI = 'https://hg.python.org/cpython/file/3.4/%s'

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

0 comments on commit e6f8c50

Please sign in to comment.