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:
authorMaurice Raybaud <mauriceraybaud@hotmail.fr>2015-12-28 20:56:41 +0300
committerMaurice Raybaud <mauriceraybaud@hotmail.fr>2015-12-28 20:56:41 +0300
commitb12e3ddf816a42492763d33bf910fa4ec6874cc4 (patch)
treef6ec5a303a35bc7cae6c756217d72e5df57e4f95 /render_povray/__init__.py
parentc0a273d1e7ae86f635816896be762dad3ebd1662 (diff)
separated primitives operators for export and import to their own python file.
Diffstat (limited to 'render_povray/__init__.py')
-rw-r--r--render_povray/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/render_povray/__init__.py b/render_povray/__init__.py
index 74ab9795..8723af17 100644
--- a/render_povray/__init__.py
+++ b/render_povray/__init__.py
@@ -36,6 +36,7 @@ if "bpy" in locals():
import importlib
importlib.reload(ui)
importlib.reload(render)
+ importlib.reload(primitives)
importlib.reload(update_files)
else:
@@ -59,6 +60,7 @@ else:
from . import (
ui,
render,
+ primitives,
update_files,
)