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). --- curve_simplify.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'curve_simplify.py') diff --git a/curve_simplify.py b/curve_simplify.py index 8533769d..55aed13c 100644 --- a/curve_simplify.py +++ b/curve_simplify.py @@ -584,9 +584,13 @@ class CURVE_OT_simplify(bpy.types.Operator): #### REGISTER ################################### ################################################# def register(): + bpy.utils.register_module(__name__) + pass def unregister(): + bpy.utils.unregister_module(__name__) + pass if __name__ == "__main__": -- cgit v1.2.3