]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
roger says this url is better
authorNick Mathewson <nickm@torproject.org>
Fri, 27 May 2016 19:11:11 +0000 (15:11 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 27 May 2016 19:11:11 +0000 (15:11 -0400)
scripts/maint/format_changelog.py

index 6b588702a753177829969aa8ec6b9ecffdff0b20..e909fc550aa6120c5573adb13e903f2a72f035f9 100755 (executable)
@@ -401,7 +401,7 @@ class ChangeLog(object):
 # Let's turn bugs to html.
 BUG_PAT = re.compile('(bug|ticket|feature)\s+(\d{4,5})', re.I)
 def bug_html(m):
-    return "%s <a href='https://trac.torproject.org/projects/tor/ticket/%s'>%s</a>" % (m.group(1), m.group(2), m.group(2))
+    return "%s <a href='https://bugs.torproject.org/%s'>%s</a>" % (m.group(1), m.group(2), m.group(2))
 
 class HTMLChangeLog(ChangeLog):
     def __init__(self, *args, **kwargs):