From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-758559-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	by finch.gentoo.org (Postfix) with ESMTP id A733B1389E2
	for <garchives@archives.gentoo.org>; Mon, 22 Dec 2014 23:11:46 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id DD1C2E096E;
	Mon, 22 Dec 2014 23:11:41 +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 25270E096E
	for <gentoo-commits@lists.gentoo.org>; Mon, 22 Dec 2014 23:11:41 +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 652D33405D5
	for <gentoo-commits@lists.gentoo.org>; Mon, 22 Dec 2014 23:11:40 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 034FED275
	for <gentoo-commits@lists.gentoo.org>; Mon, 22 Dec 2014 23:11:39 +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: <1419023821.82c33b026e68e4f957ada51b3f51e21b265a5add.dol-sen@gentoo>
Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/
X-VCS-Repository: proj/gentoo-keys
X-VCS-Files: gkeys/actions.py
X-VCS-Directories: gkeys/
X-VCS-Committer: dol-sen
X-VCS-Committer-Name: Brian Dolbec
X-VCS-Revision: 82c33b026e68e4f957ada51b3f51e21b265a5add
X-VCS-Branch: master
Date: Mon, 22 Dec 2014 23:11:39 +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: 0c108173-1400-4357-9ff0-1d2efca297ae
X-Archives-Hash: 66dba836f8b670e163ac19d30560b444

commit:     82c33b026e68e4f957ada51b3f51e21b265a5add
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Mon Dec  1 20:05:50 2014 +0000
Commit:     Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Fri Dec 19 21:17:01 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=82c33b02

gkeys/actions.py: Fix indent formatting on checkkeys()

---
 gkeys/actions.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gkeys/actions.py b/gkeys/actions.py
index dc36f7c..91f76a5 100644
--- a/gkeys/actions.py
+++ b/gkeys/actions.py
@@ -332,9 +332,10 @@ class Actions(object):
         if failed['sign']:
             self.output([failed['sign']], '\n No signing capable subkeys:\n')
         return (len(failed) <1,
-            ['\nFound:\n-------', 'Expired: %d\nRevoked: %d\nInvalid: %d\nNo signing capable subkeys: %d'
-                % (len(failed['expired']), len(failed['revoked']),
-                    len(failed['invalid']), len(failed['sign']))
+            ['\nFound:\n-------', 'Expired: %d' % len(failed['expired']),
+                'Revoked: %d' % len(failed['revoked']),
+                'Invalid: %d' % len(failed['invalid']),
+                'No signing capable subkeys: %d' % len(failed['sign'])
             ])