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 163F21389E2 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 24CB3E0964; 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 9BBC0E0963 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 D25BE3402FB 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 EA979D5D4 for ; Thu, 25 Dec 2014 20:43:09 +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: <1419535705.9ed35221ea0fbeb9f79cb620239a7c5c4a5f43eb.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: 9ed35221ea0fbeb9f79cb620239a7c5c4a5f43eb X-VCS-Branch: master Date: Thu, 25 Dec 2014 20:43:09 +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: 3fa1ed4e-9a57-4913-94a0-96c836321321 X-Archives-Hash: 57ccb1ed6e535b1ff0c155acb51b7c01 commit: 9ed35221ea0fbeb9f79cb620239a7c5c4a5f43eb Author: Brian Dolbec gentoo org> AuthorDate: Thu Dec 25 19:28:25 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Thu Dec 25 19:28:25 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=9ed35221 gkeys-ldap/actions.py: Fix config.get() call to config.get_key() --- 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 815950d..212b027 100644 --- a/gkeys-ldap/gkeyldap/actions.py +++ b/gkeys-ldap/gkeyldap/actions.py @@ -86,7 +86,7 @@ class Actions(object): self.logger.debug( "MAIN: _action_updateseeds; got results :) converted to info") if args.category: - filename = self.config.get('seeds', args.category) + '.new' + filename = self.config.get_key('seeds', args.category) + '.new' if not self.create_seedfile(info, filename): self.logger.error("Developer seed file update failure: " "Original seed file is intact & untouched.")