diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-05-27 15:11:11 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-05-27 15:11:11 -0400 |
commit | 87593702eb606f18c7b2d1cd688f1173081d203a (patch) | |
tree | d24f3bfaf04a69f515347e44102647bab521556b /scripts/maint/format_changelog.py | |
parent | 1e5ad15688ee3f3660fe35cab23022126b55262d (diff) | |
download | tor-87593702eb606f18c7b2d1cd688f1173081d203a.tar.gz tor-87593702eb606f18c7b2d1cd688f1173081d203a.zip |
roger says this url is better
Diffstat (limited to 'scripts/maint/format_changelog.py')
-rwxr-xr-x | scripts/maint/format_changelog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/maint/format_changelog.py b/scripts/maint/format_changelog.py index 6b588702a7..e909fc550a 100755 --- a/scripts/maint/format_changelog.py +++ b/scripts/maint/format_changelog.py @@ -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): |