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 2778B1389E2 for ; Mon, 22 Dec 2014 23:11:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69726E0974; Mon, 22 Dec 2014 23:11:43 +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 BB714E0974 for ; Mon, 22 Dec 2014 23:11:42 +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 F05E33405FB for ; Mon, 22 Dec 2014 23:11:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24711D277 for ; Mon, 22 Dec 2014 23:11:39 +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: <1419023821.e63d6aa45def08338e8430c52ad9f9454f29f5dd.dol-sen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/lib.py X-VCS-Directories: gkeys/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: e63d6aa45def08338e8430c52ad9f9454f29f5dd X-VCS-Branch: master Date: Mon, 22 Dec 2014 23:11:39 +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: d39ce609-f31d-4861-bfb5-1a60cdccc23b X-Archives-Hash: 9723bf4a5b2a86d3d1e0bddb5e6c3f2f commit: e63d6aa45def08338e8430c52ad9f9454f29f5dd Author: Brian Dolbec gentoo org> AuthorDate: Mon Dec 8 03:45:12 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Dec 19 21:17:01 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=e63d6aa4 gkeys/lib.py: Fix the fingerprint or keyid not being passed to lisy_keys() --- gkeys/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gkeys/lib.py b/gkeys/lib.py index 6010e65..c27f85d 100644 --- a/gkeys/lib.py +++ b/gkeys/lib.py @@ -227,7 +227,7 @@ class GkeysGPG(GPG): @returns: GKEY_CHECK instance ''' if not result: - result = self.list_keys(keydir, colons=True) + result = self.list_keys(keydir, fingerprint=keyid, colons=True) checker = KeyChecks(logger) return checker.validity_checks(keydir, keyid, result)