aboutsummaryrefslogtreecommitdiff
path: root/gkeys
diff options
context:
space:
mode:
authorBrian Dolbec <dolsen@gentoo.org>2014-12-28 00:23:36 -0800
committerBrian Dolbec <dolsen@gentoo.org>2014-12-30 13:42:26 -0800
commitd1c8f1bcf372055636628ae9b219d4c73f91a0d2 (patch)
tree89d3979b2b6cb07d8e14a673057adc135793b1fb /gkeys
parentgkeys/actions.py: Improve verification messages and info (diff)
downloadgentoo-keys-d1c8f1bcf372055636628ae9b219d4c73f91a0d2.tar.gz
gentoo-keys-d1c8f1bcf372055636628ae9b219d4c73f91a0d2.tar.bz2
gentoo-keys-d1c8f1bcf372055636628ae9b219d4c73f91a0d2.zip
gkeys/actions.py: Fix broken key-search printing
Diffstat (limited to 'gkeys')
-rw-r--r--gkeys/gkeys/actions.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/gkeys/gkeys/actions.py b/gkeys/gkeys/actions.py
index 1d3a927..03789fa 100644
--- a/gkeys/gkeys/actions.py
+++ b/gkeys/gkeys/actions.py
@@ -908,8 +908,7 @@ class Actions(object):
msgs = []
for cat in list(keys):
msgs.append("Category: %s" % cat)
- for result in keys[cat]:
- msgs.append(result)
+ msgs.append(keys[cat])
del keys, found, cat, result, handler
return (True, msgs)