mirror of
https://github.com/ejwa/gitinspector.git
synced 2025-03-18 22:38:05 +01:00
Fixed problem with the new email detection patch.
This commit is contained in:
parent
12dce7f365
commit
fa5e5411f5
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ class Blame:
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_author_email(string):
|
def get_author_email(string):
|
||||||
author_email = re.search("^[0-9a-f]{8} \(<([^>]*)", string)
|
author_email = re.search("\(<([^>]*)", string)
|
||||||
return author_email.group(1)
|
return author_email.group(1)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
Loading…
Add table
Reference in a new issue