From f6eadfac1e9f116540e49e52738fffc01df91b9c Mon Sep 17 00:00:00 2001 From: David Vierra Date: Thu, 24 Jan 2013 12:41:02 -1000 Subject: [PATCH] Fixed: import statement automatically inserted by PyCharm was relative to the wrong source root. (again.) --- block_fill.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/block_fill.py b/block_fill.py index a1d2fbe..fd52b50 100644 --- a/block_fill.py +++ b/block_fill.py @@ -1,5 +1,5 @@ import logging -from pymclevel import materials +import materials log = logging.getLogger(__name__)