Bugfix for commit before:

Make check for keys in keymap case insensitive
pull/33/head
fkrone 8 years ago
parent e2ef883ec2
commit 99a1108338

@ -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]
email = line.split('<')[1].split('>')[0].lower()
fingerprint = line.split(':')[4]
keys[fingerprint] = email
return keys

Loading…
Cancel
Save