forked from Disroot/gpg-lacre
Use literal separator '@' in sanitize_case_sense
This commit is contained in:
parent
d3b1717290
commit
55b58d25bc
1 changed files with 1 additions and 1 deletions
|
@ -341,7 +341,7 @@ def sanitize_case_sense( address ):
|
|||
else:
|
||||
splitted_address = address.split('@')
|
||||
if len(splitted_address) > 1:
|
||||
address = splitted_address[0] + sep + splitted_address[1].lower()
|
||||
address = splitted_address[0] + '@' + splitted_address[1].lower()
|
||||
|
||||
return address
|
||||
|
||||
|
|
Loading…
Reference in a new issue