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 3F022138A1A for ; Thu, 1 Jan 2015 22:32:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A72FE0805; Thu, 1 Jan 2015 22:32:08 +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 C546EE0805 for ; Thu, 1 Jan 2015 22:32:06 +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 DBAFA3406B2 for ; Thu, 1 Jan 2015 22:32:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 862D3EAAA for ; Thu, 1 Jan 2015 22:32:04 +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: <1420151488.9bdb0b53e00a591dabf23faebaa95ae97d410830.dolsen@gentoo> Subject: [gentoo-commits] proj/gentoo-keys:master commit in: gkeys/gkeys/ X-VCS-Repository: proj/gentoo-keys X-VCS-Files: gkeys/gkeys/actions.py X-VCS-Directories: gkeys/gkeys/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 9bdb0b53e00a591dabf23faebaa95ae97d410830 X-VCS-Branch: master Date: Thu, 1 Jan 2015 22:32:04 +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: a369204a-50f8-470b-8619-b5793dbf6173 X-Archives-Hash: 2a168c94a2bcaf26d1ff0d03ecb6fe3e commit: 9bdb0b53e00a591dabf23faebaa95ae97d410830 Author: Brian Dolbec gentoo org> AuthorDate: Thu Jan 1 22:31:28 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Thu Jan 1 22:31:28 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/gentoo-keys.git;a=commit;h=9bdb0b53 gkeys/actions.py: Remove redundant (broken) verify_info code --- gkeys/gkeys/actions.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gkeys/gkeys/actions.py b/gkeys/gkeys/actions.py index 178d16d..c1f5b34 100644 --- a/gkeys/gkeys/actions.py +++ b/gkeys/gkeys/actions.py @@ -140,10 +140,6 @@ class Actions(object): def fetchseed(self, args): '''Download the selected seed file(s)''' self.logger.debug("ACTIONS: fetchseed; args: %s" % str(args)) - if not args.keyring: - verify_info = self.config.get_key('verify-seeds', args.category).split() - args.keyring = verify_info[0] - args.nick = verify_info[1] handler = SeedHandler(self.logger, self.config) success, messages = handler.fetch_seeds(args.category, args, self.verify)