mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: [Credential] force lowercase of mail address
This commit is contained in:
parent
f917357615
commit
acd564026e
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue