From 61d5b389e2424ff22576cc07b99260f952f6f97b Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 11 Feb 2011 01:29:13 +0000 Subject: add in module register calls (first pass, batch replace, will test each addon next). --- io_anim_bvh/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'io_anim_bvh') diff --git a/io_anim_bvh/__init__.py b/io_anim_bvh/__init__.py index a5c57d9b..96e034f0 100644 --- a/io_anim_bvh/__init__.py +++ b/io_anim_bvh/__init__.py @@ -121,11 +121,15 @@ def menu_func_export(self, context): def register(): + bpy.utils.register_module(__name__) + bpy.types.INFO_MT_file_import.append(menu_func_import) bpy.types.INFO_MT_file_export.append(menu_func_export) def unregister(): + bpy.utils.unregister_module(__name__) + bpy.types.INFO_MT_file_import.remove(menu_func_import) bpy.types.INFO_MT_file_export.remove(menu_func_export) -- cgit v1.2.3