Use literal separator '@' in sanitize_case_sense

This commit is contained in:
Piotr F. Mieszkowski 2022-06-01 23:23:51 +02:00
parent d3b1717290
commit 55b58d25bc
1 changed files with 1 additions and 1 deletions

View File

@ -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