]> granicus.if.org Git - python/commitdiff
Use https:// URLs for the bug tracker in the :issue: role.
authorAlex Gaynor <alex.gaynor@gmail.com>
Mon, 13 Oct 2014 19:58:03 +0000 (12:58 -0700)
committerAlex Gaynor <alex.gaynor@gmail.com>
Mon, 13 Oct 2014 19:58:03 +0000 (12:58 -0700)
Thanks to Ezio for noticing this

Doc/tools/pyspecific.py

index a5ee8c2fd127476d9e6542414fc29499836ca9e9..76f6a9f9d7f6431058d702e407eb9c330405ce3c 100644 (file)
@@ -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/default/%s'
 
 from docutils import nodes, utils
@@ -204,7 +204,7 @@ class MiscNews(Directive):
             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