commit: 49437c0c128d8632aa15d1d7bbfbb0e0a1f81905 Author: Mike Frysinger <vapier <AT> gentoo <DOT> org> AuthorDate: Tue Oct 6 14:07:44 2015 +0000 Commit: Mike Frysinger <vapier <AT> gentoo <DOT> 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
