Skip to content
Snippets Groups Projects
Commit bb855fbc authored by Brendon Murphy's avatar Brendon Murphy
Browse files

updates to registration & bl_info

parent f2dc6ecf
Branches
No related tags found
No related merge requests found
...@@ -20,9 +20,9 @@ bl_info = { ...@@ -20,9 +20,9 @@ bl_info = {
"name": "Batch Rename Datablocks", "name": "Batch Rename Datablocks",
"author": "tstscr", "author": "tstscr",
"version": (1, 0), "version": (1, 0),
"blender": (2, 5, 5), "blender": (2, 5, 9),
"api": 33684, "api": 39685,
"location": "use the search :)", "location": "Search > (rename)",
"description": "Batch renaming of datablocks (e.g. rename materials after objectnames)", "description": "Batch renaming of datablocks (e.g. rename materials after objectnames)",
"warning": "", "warning": "",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\
...@@ -179,8 +179,10 @@ class OBJECT_OT_batch_rename_datablocks(bpy.types.Operator): ...@@ -179,8 +179,10 @@ class OBJECT_OT_batch_rename_datablocks(bpy.types.Operator):
def register(): def register():
bpy.utils.register_module(__name__)
pass pass
def unregister(): def unregister():
bpy.utils.unregister_module(__name__)
pass pass
if __name__ == '__main__': if __name__ == '__main__':
register() register()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment