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 91F3413888F for ; Tue, 6 Oct 2015 15:31:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CD32E21C03A; Tue, 6 Oct 2015 15:31:30 +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 0EDC321C02A for ; Tue, 6 Oct 2015 15:31:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 57D203406C2 for ; Tue, 6 Oct 2015 15:31:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 58731AD1 for ; Tue, 6 Oct 2015 15:31:26 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1444140464.49437c0c128d8632aa15d1d7bbfbb0e0a1f81905.vapier@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/contents.py catalyst/hash_utils.py X-VCS-Directories: catalyst/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 49437c0c128d8632aa15d1d7bbfbb0e0a1f81905 X-VCS-Branch: master Date: Tue, 6 Oct 2015 15:31:26 +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: 5b75fee4-bf7a-482b-aea5-dc6b983671f7 X-Archives-Hash: 06798921e372f9b2de06a8f3a300d5c0 commit: 49437c0c128d8632aa15d1d7bbfbb0e0a1f81905 Author: Mike Frysinger gentoo org> AuthorDate: Tue Oct 6 14:07:44 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Tue Oct 6 14:07:44 2015 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=49437c0c lint: avoid relative imports 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