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 E2AE7138CD0 for ; Sun, 31 May 2015 05:03:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF53CE08BF; Sun, 31 May 2015 05:03:21 +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 613C5E08BB for ; Sun, 31 May 2015 05:03:21 +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 32A7F340C50 for ; Sun, 31 May 2015 05:03:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DEC0AA18 for ; Sun, 31 May 2015 05:03:18 +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: <1433027930.46bbcbc3cc1b11577eceb9291fc469f4aad8469f.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/gkeys/lib.py X-VCS-Directories: gkeys/gkeys/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 46bbcbc3cc1b11577eceb9291fc469f4aad8469f X-VCS-Branch: master Date: Sun, 31 May 2015 05:03:18 +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: af54e4c1-3899-4891-9e78-d2beaa8145a2 X-Archives-Hash: 75ae9303935c78409f477469e94c728a commit: 46bbcbc3cc1b11577eceb9291fc469f4aad8469f Author: Brian Dolbec gentoo org> AuthorDate: Wed Mar 18 20:44:58 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Sat May 30 23:18:50 2015 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-keys.git/commit/?id=46bbcbc3 gkeys/lib.py: Fix logger message to show the correct function gkeys/gkeys/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gkeys/gkeys/lib.py b/gkeys/gkeys/lib.py index 3eb267c..a740dd9 100644 --- a/gkeys/gkeys/lib.py +++ b/gkeys/gkeys/lib.py @@ -234,7 +234,7 @@ class GkeysGPG(GPG): lresults.append(self.list_keys(gkey.keydir, fpr, colons=True)) self.seedfile.update(gkey.update(lresults)) if save and not self.seedfile.save(): - self.logger.error("GkeysGPG.refresh_key(); failed to save seed: " + gkey.nick) + self.logger.error("GkeysGPG.update_gkey(); failed to save seed: " + gkey.nick) return False return True