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 A5D501389E2 for ; Mon, 22 Dec 2014 23:11:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 017B5E097E; Mon, 22 Dec 2014 23:11:44 +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 DE564E0976 for ; Mon, 22 Dec 2014 23:11:42 +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 06B833405EE for ; Mon, 22 Dec 2014 23:11:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45B28D279 for ; Mon, 22 Dec 2014 23:11:39 +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: <1419023821.f44ff883cb5cc34b820415fda71d918c7800d4fd.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: f44ff883cb5cc34b820415fda71d918c7800d4fd X-VCS-Branch: master Date: Mon, 22 Dec 2014 23:11:39 +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: 0e142b57-eee4-4876-8c22-ebd1aa18e5b0 X-Archives-Hash: acfce8e3046f177a60b93c957aa79e2c commit: f44ff883cb5cc34b820415fda71d918c7800d4fd Author: Brian Dolbec gentoo org> AuthorDate: Wed Dec 10 01:41:46 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Fri Dec 19 21:17:01 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=f44ff883 gkeys/actions.py: Fix handler.fetch_seeds call for args.category to args.seedfile change --- gkeys/actions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gkeys/actions.py b/gkeys/actions.py index 91f76a5..6ba63b7 100644 --- a/gkeys/actions.py +++ b/gkeys/actions.py @@ -77,7 +77,7 @@ class Actions(object): '''Download the selected seed file(s)''' self.logger.debug("ACTIONS: fetchseed; args: %s" % str(args)) handler = SeedHandler(self.logger, self.config) - success, messages = handler.fetch_seeds(args.category, args, self.verify) + success, messages = handler.fetch_seeds(args.seedfile, args, self.verify) messages.append("") messages.append("Fetch operation completed")