From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B3F941389E2 for ; Wed, 31 Dec 2014 21:34:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91E65E08BF; Wed, 31 Dec 2014 21:34:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 021D5E08C2 for ; Wed, 31 Dec 2014 21:34:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 127A23406D4 for ; Wed, 31 Dec 2014 21:34:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CCF3E982 for ; Wed, 31 Dec 2014 21:34:31 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1419975746.d1c8f1bcf372055636628ae9b219d4c73f91a0d2.dolsen@gentoo.org@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/gkeys/actions.py X-VCS-Directories: gkeys/gkeys/ X-VCS-Committer: dolsen@gentoo.org X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: d1c8f1bcf372055636628ae9b219d4c73f91a0d2 X-VCS-Branch: master Date: Wed, 31 Dec 2014 21:34:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 80e33e52-2a46-4977-ad7f-85823364cc17 X-Archives-Hash: b2fdc4e995da2d0a25a46b5d44f921d1 commit: d1c8f1bcf372055636628ae9b219d4c73f91a0d2 Author: Brian Dolbec gentoo org> AuthorDate: Sun Dec 28 08:23:36 2014 +0000 Commit: Brian Dolbec gentoo 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)