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 9AD861389E2 for ; Thu, 25 Dec 2014 20:43:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9D1F7E0969; 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 C0B35E0968 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 087AE3404B1 for ; Thu, 25 Dec 2014 20:43:13 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17326D5D6 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: <1419536293.017471ef799b9c7b467ef51521cddd76d4fdf89e.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: 017471ef799b9c7b467ef51521cddd76d4fdf89e 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: f4997388-d499-4d02-83cb-5e658786221d X-Archives-Hash: 48245273bc6d459689cf70f06f693fc1 commit: 017471ef799b9c7b467ef51521cddd76d4fdf89e Author: Brian Dolbec gentoo org> AuthorDate: Thu Dec 25 19:38:13 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Thu Dec 25 19:38:13 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=017471ef gkeys-ldap/actions.py: Update action return values to match what CliBase expects --- gkeys-ldap/gkeyldap/actions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gkeys-ldap/gkeyldap/actions.py b/gkeys-ldap/gkeyldap/actions.py index 29d8bc7..1d8e848 100644 --- a/gkeys-ldap/gkeyldap/actions.py +++ b/gkeys-ldap/gkeyldap/actions.py @@ -71,7 +71,7 @@ class Actions(object): self.output('', "Total number of developers in results:", len(devs)) self.logger.info("============================================") self.logger.info("Total number of developers in results: %d" % len(devs)) - return True + return (True, ['Completed']) def updateseeds(self, args): @@ -96,7 +96,7 @@ class Actions(object): self.output('', "Develope seed failed to update!") return False self.output('', "Developer seed file updated!") - return True + return (True, ['Completed']) def create_seedfile(self, devs, filename):