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 EBD8D1389E2 for ; Thu, 25 Dec 2014 20:43:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24C78E0963; Thu, 25 Dec 2014 20:43:14 +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 9E002E0964 for ; Thu, 25 Dec 2014 20:43:13 +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 D2A51340486 for ; Thu, 25 Dec 2014 20:43:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 070E4D5D5 for ; Thu, 25 Dec 2014 20:43:10 +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: <1419535999.58bc58f55f81cf76dc27e6766d11819acdf5fcaf.dol-sen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys-ldap/gkeyldap/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys-ldap/gkeyldap/actions.py X-VCS-Directories: gkeys-ldap/gkeyldap/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 58bc58f55f81cf76dc27e6766d11819acdf5fcaf X-VCS-Branch: master Date: Thu, 25 Dec 2014 20:43:10 +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: 81da6fbf-b0bf-4786-af5f-90a7f15524d3 X-Archives-Hash: c08d8e06dfb1590d82d853bfbfa4caeb commit: 58bc58f55f81cf76dc27e6766d11819acdf5fcaf Author: Brian Dolbec gentoo org> AuthorDate: Thu Dec 25 19:33:19 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Thu Dec 25 19:33:19 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=58bc58f5 gkeys-ldap/actions.py: Fix some outputs for errors and consistency --- gkeys-ldap/gkeyldap/actions.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gkeys-ldap/gkeyldap/actions.py b/gkeys-ldap/gkeyldap/actions.py index 212b027..29d8bc7 100644 --- a/gkeys-ldap/gkeyldap/actions.py +++ b/gkeys-ldap/gkeyldap/actions.py @@ -115,11 +115,11 @@ class Actions(object): count += 1 else: error_count += 1 - self.output('', "Total number of seeds created:", count) - self.output('', "Seeds created... Saving file: %s" % filename) - self.output('', "Total number of Dev's with GPG errors:", error_count) - self.logger.info("Total number of seeds created: %d" % count) - self.logger.info("Seeds created... Saving file: %s" % filename) + self.output('', "Total number of seeds created........: %s" % count) + self.output('', "Seeds created... Saving file.........: %s" % filename) + self.output('', "Total number of Dev's with GPG errors: %s" % error_count) + self.logger.info("Total number of seeds created........: %d" % count) + self.logger.info("Seeds created... Saving file.........: %s" % filename) self.logger.info("Total number of Dev's with GPG errors: %d" % error_count) return self.seeds.save()