Fixed problem with the new email detection patch.

This commit is contained in:
Adam Waldenberg 2014-11-03 11:02:06 +01:00
parent 12dce7f365
commit fa5e5411f5
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ class Blame:
@staticmethod
def get_author_email(string):
author_email = re.search("^[0-9a-f]{8} \(<([^>]*)", string)
author_email = re.search("\(<([^>]*)", string)
return author_email.group(1)
@staticmethod