##// END OF EJS Templates
scripts: lower case contributor emails to normalize them
Mads Kiilerich -
r8015:27d6f56a stable
parent child Browse files
Show More
@@ -100,6 +100,9 b' def insert_entries('
100 100 for year, name in all_entries:
101 101 if name in no_entries or (name, year) in no_entries:
102 102 continue
103 parts = name.split(' <', 1)
104 if len(parts) == 2:
105 name = parts[0] + ' <' + parts[1].lower()
103 106 domain = name.split('@', 1)[-1].rstrip('>')
104 107 if domain in domain_extra:
105 108 name_years[domain_extra[domain]].add(year)
General Comments 0
You need to be logged in to leave comments. Login now