aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-01-18 10:15:02 -0500
committerNick Mathewson <nickm@torproject.org>2019-01-18 10:15:02 -0500
commitaaef95ada5d304117d5697a042d0f43b87329ecc (patch)
treebe0f4aa225bf3a16167bf2a03091bde9e5a0b03a /scripts
parent67f275f8dacc53f10b34b431028cebe346d0369c (diff)
downloadtor-aaef95ada5d304117d5697a042d0f43b87329ecc.tar.gz
tor-aaef95ada5d304117d5697a042d0f43b87329ecc.zip
format_changelog: treat "issue NNNN" as a track ticket
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/maint/format_changelog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/maint/format_changelog.py b/scripts/maint/format_changelog.py
index 8dce4b6e51..08b2155fa3 100755
--- a/scripts/maint/format_changelog.py
+++ b/scripts/maint/format_changelog.py
@@ -401,7 +401,7 @@ class ChangeLog(object):
self.dumpEndOfChangelog()
# Let's turn bugs to html.
-BUG_PAT = re.compile('(bug|ticket|feature)\s+(\d{4,5})', re.I)
+BUG_PAT = re.compile('(bug|ticket|issue|feature)\s+(\d{4,5})', re.I)
def bug_html(m):
return "%s <a href='https://bugs.torproject.org/%s'>%s</a>" % (m.group(1), m.group(2), m.group(2))