commit:     d1c8f1bcf372055636628ae9b219d4c73f91a0d2
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 28 08:23:36 2014 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Tue Dec 30 21:42:26 2014 +0000
URL:        
http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=d1c8f1bc

gkeys/actions.py: Fix broken key-search printing

---
 gkeys/gkeys/actions.py | 3 +--
 1 file changed, 1 insertion(+), 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)
 

Reply via email to