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:
authorBastien Montagne <montagne29@wanadoo.fr>2018-09-19 17:12:16 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-09-19 17:12:16 +0300
commitb5328b13c54bdd3419d48373e3f54f22e2501396 (patch)
treec0b7df5e7373a7009a50189ee072b74bed8f5b89 /io_mesh_uv_layout
parentd5ad293372d3a66ea52ec9d307104e3cd62d3cb6 (diff)
Fix incorrect always-register call in mesh_uv_layout add-on.
Diffstat (limited to 'io_mesh_uv_layout')
-rw-r--r--io_mesh_uv_layout/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_mesh_uv_layout/__init__.py b/io_mesh_uv_layout/__init__.py
index 7256bbef..4f801a41 100644
--- a/io_mesh_uv_layout/__init__.py
+++ b/io_mesh_uv_layout/__init__.py
@@ -310,5 +310,5 @@ def unregister():
bpy.types.IMAGE_MT_uvs.remove(menu_func)
-if __name__ == 'io_mesh_uv_layout':
+if __name__ == "__main__":
register()