Fix bug in release process tool: bad regex in zcutil/release-notes.py.

This commit is contained in:
Simon 2017-02-10 12:50:01 -08:00
parent 027ab14b29
commit a8d201026e
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ def apply_author_aliases(name):
return name
def parse_authors(line):
commit_search = re.search('(\d+)', line)
commit_search = re.search('\((\d+)\)', line)
if commit_search:
commits = commit_search.group(1)
else: