Do not ignore commits with malformed author email

Closes bug 1295355

Change-Id: I2bc6b06b8e32cf1c71b2931c7ca7ce722cb026c0
This commit is contained in:
Ilya Shakhat 2014-12-26 17:20:56 +03:00
parent c165fc4d94
commit c36bee13d8

View File

@ -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')