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 4A99713888F for ; Tue, 6 Oct 2015 15:05:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1AA7821C042; Tue, 6 Oct 2015 15:05:37 +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 893BB21C038 for ; Tue, 6 Oct 2015 15:05:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id D303D340AB5 for ; Tue, 6 Oct 2015 15:05:35 +0000 (UTC) From: Mike Frysinger To: gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH 06/13] lint: avoid relative imports Date: Tue, 6 Oct 2015 11:05:22 -0400 Message-Id: <1444143929-26705-6-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 2.5.2 In-Reply-To: <1444143929-26705-1-git-send-email-vapier@gentoo.org> References: <1444143929-26705-1-git-send-email-vapier@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 70212c0c-fe65-4d1f-93e7-abbaf2d0d12e X-Archives-Hash: 69b16881b819c322ff4cb058a58faf35 We import from catalyst.xxx elsewhere, so be consistent. --- catalyst/contents.py | 2 +- catalyst/hash_utils.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/catalyst/contents.py b/catalyst/contents.py index a06b2db..73eda61 100644 --- a/catalyst/contents.py +++ b/catalyst/contents.py @@ -2,7 +2,7 @@ from collections import namedtuple from subprocess import Popen, PIPE -from support import CatalystError, warn +from catalyst.support import CatalystError, warn # use ContentsMap.fields for the value legend diff --git a/catalyst/hash_utils.py b/catalyst/hash_utils.py index 39f489b..0262422 100644 --- a/catalyst/hash_utils.py +++ b/catalyst/hash_utils.py @@ -3,7 +3,7 @@ import os from collections import namedtuple from subprocess import Popen, PIPE -from support import CatalystError +from catalyst.support import CatalystError # Use HashMap.fields for the value legend -- 2.5.2