From: Nick Mathewson Date: Fri, 18 Jan 2019 15:15:02 +0000 (-0500) Subject: format_changelog: treat "issue NNNN" as a track ticket X-Git-Tag: tor-0.4.1.0-alpha-dev~29 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aaef95ada5d304117d5697a042d0f43b87329ecc;p=thirdparty%2Ftor.git format_changelog: treat "issue NNNN" as a track ticket --- 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 %s" % (m.group(1), m.group(2), m.group(2))