From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-698968-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (unknown [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id 3CF521381FA
	for <garchives@archives.gentoo.org>; Tue, 27 May 2014 20:56:46 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 9E283E0844;
	Tue, 27 May 2014 20:56:44 +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 DEEC7E084A
	for <gentoo-commits@lists.gentoo.org>; Tue, 27 May 2014 20:56:43 +0000 (UTC)
Received: from spoonbill.gentoo.org (unknown [81.93.255.5])
	(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id EC5F933F900
	for <gentoo-commits@lists.gentoo.org>; Tue, 27 May 2014 20:56:42 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by spoonbill.gentoo.org (Postfix) with ESMTP id 7EB9A182DD
	for <gentoo-commits@lists.gentoo.org>; Tue, 27 May 2014 20:56:40 +0000 (UTC)
From: "Brian Dolbec" <brian.dolbec@gmail.com>
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" <brian.dolbec@gmail.com>
Message-ID: <1400693953.288ed8404e12e68f86594a1f5a099e0ccd59c747.dol-sen@gentoo>
Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/
X-VCS-Repository: proj/gentoo-keys
X-VCS-Files: gkeys/seedhandler.py
X-VCS-Directories: gkeys/
X-VCS-Committer: dol-sen
X-VCS-Committer-Name: Brian Dolbec
X-VCS-Revision: 288ed8404e12e68f86594a1f5a099e0ccd59c747
X-VCS-Branch: master
Date: Tue, 27 May 2014 20:56:40 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 551020c6-8ca6-47a3-92ba-d7ae76ad7e42
X-Archives-Hash: 361bef34a11727d8010e4827bc235aa8

commit:     288ed8404e12e68f86594a1f5a099e0ccd59c747
Author:     Pavlos Ratis <dastergon <AT> gentoo <DOT> org>
AuthorDate: Wed May 21 17:39:13 2014 +0000
Commit:     Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Wed May 21 17:39:13 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=288ed840

fix missed var renaming

---
 gkeys/seedhandler.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gkeys/seedhandler.py b/gkeys/seedhandler.py
index 7f73857..be68990 100644
--- a/gkeys/seedhandler.py
+++ b/gkeys/seedhandler.py
@@ -145,7 +145,7 @@ class SeedHandler(object):
                 self.logger.error('ERROR in keyinfo for: %s, %s'
                     %(keyinfo[NICK], keyinfo[NAME]))
                 self.logger.error('  GPGKey incorrect fingerprint ' +
-                    'length (%s) for fingerprint: %s' %(len(x), x))
+                    'length (%s) for fingerprint: %s' %(len(fingerprint), fingerprint))
                 is_good = False
                 continue
             if not self.fingerprint_re.match(fingerprint):