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_main_panel.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_main_panel.py')
-rw-r--r--archimesh/achm_main_panel.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archimesh/achm_main_panel.py b/archimesh/achm_main_panel.py
index b2ebbc38..f665057a 100644
--- a/archimesh/achm_main_panel.py
+++ b/archimesh/achm_main_panel.py
@@ -27,8 +27,8 @@
import bpy
# noinspection PyUnresolvedReferences
import bgl
-from achm_tools import *
-from achm_gltools import *
+from .achm_tools import *
+from .achm_gltools import *
# -----------------------------------------------------