Use bytes in confirm_key's line operations

This commit is contained in:
Piotr F. Mieszkowski 2022-04-19 21:22:34 +02:00
parent f472f4ac22
commit 454b519c70
1 changed files with 3 additions and 3 deletions

View File

@ -89,9 +89,9 @@ def confirm_key( content, email ):
result = p.communicate(input=content)[1]
confirmed = False
for line in result.split("\n"):
if 'imported' in line and '<' in line and '>' in line:
if line.split('<')[1].split('>')[0].lower() == email.lower():
for line in result.split(b"\n"):
if b'imported' in line and b'<' in line and b'>' in line:
if line.split(b'<')[1].split(b'>')[0].lower() == email.lower():
confirmed = True
break
else: