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 14764138A1A for ; Mon, 5 Jan 2015 23:12:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1D304E0845; Mon, 5 Jan 2015 23:12:43 +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 D5B4EE0848 for ; Mon, 5 Jan 2015 23:12: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 D33293406D4 for ; Mon, 5 Jan 2015 23:12:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 00086EF43 for ; Mon, 5 Jan 2015 23:12:36 +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: <1420496119.9a61f63d51501ae11e4ce989df0615d62f836d2a.dolsen@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: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 9a61f63d51501ae11e4ce989df0615d62f836d2a X-VCS-Branch: master Date: Mon, 5 Jan 2015 23:12:36 +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: 4fd04aad-b04c-45c5-9f78-7e6aa091f58d X-Archives-Hash: d6855f3c822f157a91abdb4907212643 commit: 9a61f63d51501ae11e4ce989df0615d62f836d2a Author: Brian Dolbec gentoo org> AuthorDate: Mon Jan 5 01:28:40 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Mon Jan 5 22:15:19 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=9a61f63d gkeyldap: fix missed Seeds init logger param. --- gkeys-ldap/gkeyldap/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gkeys-ldap/gkeyldap/actions.py b/gkeys-ldap/gkeyldap/actions.py index 27c961d..dde2bc8 100644 --- a/gkeys-ldap/gkeyldap/actions.py +++ b/gkeys-ldap/gkeyldap/actions.py @@ -117,7 +117,7 @@ class Actions(object): def create_seedfile(self, devs, filename): self.output('', "Creating seeds from LDAP data...") - self.seeds = Seeds(filename, self.config) + self.seeds = Seeds(filename, self.config, self.logger) count = 0 error_count = 0 for dev in sorted(devs):