commit:     d14b6658b954fe7f521a074a1c181d1ef39ce00f
Author:     Pavlos Ratis <dastergon <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 17 18:22:44 2014 +0000
Commit:     Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Sun Aug 17 22:07:11 2014 +0000
URL:        
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=d14b6658

make all fingerprints uppercase

---
 gkeyldap/actions.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gkeyldap/actions.py b/gkeyldap/actions.py
index e999624..3e66872 100644
--- a/gkeyldap/actions.py
+++ b/gkeyldap/actions.py
@@ -154,6 +154,8 @@ class Actions(object):
                 if not is_ok or not is_match:
                     is_good = False
             if is_good:
+                # some developers add lowercase fingerprints
+                keyinfo['fingerprint'] = [key.upper() for key in 
keyinfo['fingerprint']]
                 # drop keyid and longkeyid
                 keyinfo.pop('keyid', None)
                 keyinfo.pop('longkeyid', None)

Reply via email to