fix: [Credential] force lowercase of mail address

pull/519/head
Terrtia 2020-05-20 17:20:23 +02:00
parent f917357615
commit acd564026e
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ if __name__ == "__main__":
creds_sites = {}
for site in site_occurence:
site_domain = site[1:-1]
site_domain = site[1:-1].lower()
if site_domain in creds_sites.keys():
creds_sites[site_domain] += 1
else: