Do not ignore commits with malformed author email
Closes bug 1295355 Change-Id: I2bc6b06b8e32cf1c71b2931c7ca7ce722cb026c0
This commit is contained in:
parent
c165fc4d94
commit
c36bee13d8
@ -207,7 +207,8 @@ class Git(Vcs):
|
||||
commit[param[0]] = rec.group(i)
|
||||
i += 1
|
||||
|
||||
if not utils.check_email_validity(commit['author_email']):
|
||||
if not commit['author_email']:
|
||||
# ignore commits with empty email (there are some < Essex)
|
||||
continue
|
||||
|
||||
diff_stat_str = rec.group('diff_stat')
|
||||
|
Loading…
x
Reference in New Issue
Block a user