From b5328b13c54bdd3419d48373e3f54f22e2501396 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Wed, 19 Sep 2018 16:12:16 +0200 Subject: Fix incorrect always-register call in mesh_uv_layout add-on. --- io_mesh_uv_layout/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- cgit v1.2.3