From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0AE27138334 for ; Fri, 13 Sep 2019 23:34:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 211E8E08C2; Fri, 13 Sep 2019 23:34:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E87F8E08C2 for ; Fri, 13 Sep 2019 23:34:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 772BA34B138 for ; Fri, 13 Sep 2019 23:34:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5E1F785 for ; Fri, 13 Sep 2019 23:34:20 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1568417634.d03253b11ba067c6a396af76fa18ed4d9c27d4ea.zmedico@gentoo> Subject: [gentoo-commits] proj/gentoolkit:master commit in: pym/gentoolkit/eclean/ X-VCS-Repository: proj/gentoolkit X-VCS-Files: pym/gentoolkit/eclean/pkgindex.py X-VCS-Directories: pym/gentoolkit/eclean/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: d03253b11ba067c6a396af76fa18ed4d9c27d4ea X-VCS-Branch: master Date: Fri, 13 Sep 2019 23:34:20 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c7af9f98-4b49-41c9-86c6-b8248d5bfa05 X-Archives-Hash: 07e37c1c06d67f280a3a5517111ec3f8 commit: d03253b11ba067c6a396af76fa18ed4d9c27d4ea Author: Zac Medico gentoo org> AuthorDate: Fri Sep 13 23:33:15 2019 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Sep 13 23:33:54 2019 +0000 URL: https://gitweb.gentoo.org/proj/gentoolkit.git/commit/?id=d03253b1 eclean: tox fix: local variable 'e' is assigned to but never used Signed-off-by: Zac Medico gentoo.org> pym/gentoolkit/eclean/pkgindex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pym/gentoolkit/eclean/pkgindex.py b/pym/gentoolkit/eclean/pkgindex.py index 584a5bc..c1f5f9d 100644 --- a/pym/gentoolkit/eclean/pkgindex.py +++ b/pym/gentoolkit/eclean/pkgindex.py @@ -55,7 +55,7 @@ class PkgIndex(object): try: from emaint.module import Modules # noqa from emaint.main import TaskHandler # noqa - except ImportError as e: + except ImportError: return False return True