From e4e94f077f146ab126a9d247eb43583ce4b08d15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Tue, 17 Jan 2017 17:00:40 +0100 Subject: [PATCH] Fixed bad import --- bam/blend/blendfile_pack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bam/blend/blendfile_pack.py b/bam/blend/blendfile_pack.py index 4b78305..0161d87 100755 --- a/bam/blend/blendfile_pack.py +++ b/bam/blend/blendfile_pack.py @@ -39,7 +39,7 @@ del os, sys, path # ... when internals _really_ fail & we want to know why def _dbg(text): import sys - from bam_utils.system import colorize + from bam.utils.system import colorize if type(text) is bytes: text = text.decode('utf-8') sys.__stdout__.write(colorize(text, color='red') + "\n")