Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-08-03 14:36:22 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-08-03 14:36:22 +0300
commit606fbde1c3968d2db1b7beb954a778a4997905c9 (patch)
treefc7904f5bba1195cd27d66f46f22e72573537332 /archimesh/achm_gltools.py
parent1b9a94b5f9380a12123f1def08db5a4110b54c9c (diff)
Avoid modification of python system paths
This isn't a proper way to solve the import problem, use relative import instead.
Diffstat (limited to 'archimesh/achm_gltools.py')
-rw-r--r--archimesh/achm_gltools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archimesh/achm_gltools.py b/archimesh/achm_gltools.py
index 57eab974..1cadedb1 100644
--- a/archimesh/achm_gltools.py
+++ b/archimesh/achm_gltools.py
@@ -34,7 +34,7 @@ import math
import mathutils
# noinspection PyUnresolvedReferences
from bpy_extras import view3d_utils
-from achm_room_maker import get_wall_points
+from .achm_room_maker import get_wall_points
# -------------------------------------------------------------