Home | History | Annotate | Download | only in Scripts

Lines Matching full:email

67             email = email_link.string.replace(" at ", "@") # The email is obfuscated using " at " instead of "@".
68 emails.append(email)
75 for email in committer.emails:
76 if email in emails:
86 for email in committer.emails:
87 email_to_committer_map[email] = committer
89 return filter(lambda email: not email_to_committer_map.get(email), emails)
180 # First check to see if we have a manual mapping from login to email.
189 # No known email mapping, likely not an active committer. We could log here.
195 # We compare the timestamps for extra sanity even though we could assume commits before email address were used for login are always going to be older.
218 self._print_three_column_row(column_widths, ("Last Commit", "Committer Email", "Committer Record"))
234 for email in committer.emails:
235 if last_commit_time_by_author.get(email):