diff --git a/scripts/reformat-release-notes.py b/scripts/reformat-release-notes.py index f8ad182..ad216ff 100755 --- a/scripts/reformat-release-notes.py +++ b/scripts/reformat-release-notes.py @@ -11,5 +11,5 @@ import sys import re for line in sys.stdin: - matches = re.match(r'^\* (.*) by (.*) in (.*)$', line.strip()) + matches = re.match(r'^\* (.*) by (\S+) in (\S+)$', line.strip()) print("* %s (%s)" % (matches[1], matches[3]))