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:
Diffstat (limited to 'io_coat3D/coat.py')
-rw-r--r--io_coat3D/coat.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/io_coat3D/coat.py b/io_coat3D/coat.py
index 48a2c996..fc989dd6 100644
--- a/io_coat3D/coat.py
+++ b/io_coat3D/coat.py
@@ -519,9 +519,13 @@ class SCENE_OT_deltex(bpy.types.Operator):
return('FINISHED')
def register():
+ bpy.utils.register_module(__name__)
+
pass
def unregister():
+ bpy.utils.unregister_module(__name__)
+
pass
if __name__ == "__main__":