Bugfix for commit before:
Make check for keys in keymap case insensitive
This commit is contained in:
parent
e2ef883ec2
commit
99a1108338
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue