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 9AB07138350 for ; Wed, 15 Apr 2020 19:59:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 762AAE0918; Wed, 15 Apr 2020 19:59:07 +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 5B78EE0918 for ; Wed, 15 Apr 2020 19:59:07 +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 5D5FF34F182 for ; Wed, 15 Apr 2020 19:59:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1198D71 for ; Wed, 15 Apr 2020 19:59:05 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1586980661.051596bc5da38d0d1b6ccc1f349cec783d9599b3.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/base/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/base/stagebase.py X-VCS-Directories: catalyst/base/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 051596bc5da38d0d1b6ccc1f349cec783d9599b3 X-VCS-Branch: master Date: Wed, 15 Apr 2020 19:59:05 +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: d08b35f1-57e1-49a1-9f9c-79331267bc38 X-Archives-Hash: 101ca5be4f15b2889be040977f0ab83a commit: 051596bc5da38d0d1b6ccc1f349cec783d9599b3 Author: Matt Turner gentoo org> AuthorDate: Wed Apr 15 19:57:41 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Apr 15 19:57:41 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=051596bc catalyst: Remove unused import and reorder Signed-off-by: Matt Turner gentoo.org> catalyst/base/stagebase.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index d1e638be..d2f16f9b 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -1,10 +1,9 @@ import os -import imp -import toml import platform import shutil import sys +import toml from snakeoil import fileutils from snakeoil.osutils import pjoin