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 D460C138359 for ; Mon, 3 Aug 2020 19:31:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 200B3E0B9B; Mon, 3 Aug 2020 19:31:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 0CD0AE0B9B for ; Mon, 3 Aug 2020 19:31:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2627834F00E for ; Mon, 3 Aug 2020 19:31:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97706328 for ; Mon, 3 Aug 2020 19:30:52 +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: <1596482572.e8944b35c070d550a6c552dcd2ba5300efda01d0.zmedico@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: lib/portage/tests/emerge/ X-VCS-Repository: proj/portage X-VCS-Files: lib/portage/tests/emerge/test_simple.py X-VCS-Directories: lib/portage/tests/emerge/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: e8944b35c070d550a6c552dcd2ba5300efda01d0 X-VCS-Branch: master Date: Mon, 3 Aug 2020 19:30:52 +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: c7ff3cb6-8d6f-4cd8-a0f4-cec15d7921cf X-Archives-Hash: 1db2e08846f0cd48643800016b891384 commit: e8944b35c070d550a6c552dcd2ba5300efda01d0 Author: Aaron Bauman gentoo org> AuthorDate: Mon Aug 3 19:06:05 2020 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Aug 3 19:22:52 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=e8944b35 lib/portage/tests/emerge/test_simple.py: drop unused-import Signed-off-by: Aaron Bauman gentoo.org> Signed-off-by: Zac Medico gentoo.org> lib/portage/tests/emerge/test_simple.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/portage/tests/emerge/test_simple.py b/lib/portage/tests/emerge/test_simple.py index 19ab72457..e8144c55f 100644 --- a/lib/portage/tests/emerge/test_simple.py +++ b/lib/portage/tests/emerge/test_simple.py @@ -7,8 +7,7 @@ import sys import portage from portage import shutil, os from portage import _unicode_decode -from portage.const import (BASH_BINARY, PORTAGE_BASE_PATH, - PORTAGE_PYM_PATH, USER_CONFIG_PATH) +from portage.const import (BASH_BINARY, PORTAGE_PYM_PATH, USER_CONFIG_PATH) from portage.cache.mappings import Mapping from portage.process import find_binary from portage.tests import TestCase