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
