projects
/
gentoo-keys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cf1a206
)
Remove spaces in fingerprints to match what gpg returns
author
Brian Dolbec
<dolsen@gentoo.org>
Tue, 25 Jun 2013 23:29:44 +0000
(16:29 -0700)
committer
Brian Dolbec
<dolsen@gentoo.org>
Sat, 6 Jul 2013 18:16:51 +0000
(11:16 -0700)
gkeyldap/cli.py
patch
|
blob
|
history
diff --git
a/gkeyldap/cli.py
b/gkeyldap/cli.py
index 03671b54213bc78a5a8be4c7c24485b0d94c7277..6a3e4bb331737df9692309ccf9623a040f9e9a1a 100644
(file)
--- a/
gkeyldap/cli.py
+++ b/
gkeyldap/cli.py
@@
-263,6
+263,8
@@
class Main(object):
value = get_key_ids(x, values)
if len(value):
keyid_found = True
+ elif values and x in ['fingerprint']:
+ value = [v.replace(' ', '') for v in values]
else:
value = values
if 'undefined' in values: