Revert "Bugfix for commit before:"

This reverts commit 99a1108338.
This commit is contained in:
fkrone 2015-02-14 19:02:14 +01:00
parent f6ed024e36
commit 3cefd27163
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ def public_keys( keyhome ):
if line[0:3] == 'uid' or line[0:3] == 'pub':
if ('<' not in line or '>' not in line):
continue
email = line.split('<')[1].split('>')[0].lower()
email = line.split('<')[1].split('>')[0]
fingerprint = line.split(':')[4]
keys[fingerprint] = email
return keys