Code cleanup:

* Remove "FCurve/Driver Version fix" from help menu, was used for RNA changes during 2.5x. 
* Keep utility code in animsys_refactor.py, might still become useful according to Joshua.
This commit is contained in:
Thomas Dinges
2013-11-05 08:52:12 +00:00
parent 9e2beaa1e2
commit 28bd03d9b5
3 changed files with 1 additions and 679 deletions

View File

@@ -282,14 +282,3 @@ class ClearUselessActions(Operator):
% removed)
return {'FINISHED'}
class UpdateAnimData(Operator):
"""Update data paths from 2.56 and previous versions, """ \
"""modifying data paths of drivers and fcurves"""
bl_idname = "anim.update_data_paths"
bl_label = "Update Animation Data"
def execute(self, context):
import animsys_refactor
animsys_refactor.update_data_paths(animsys_refactor.data_2_56_to_2_59)
return {'FINISHED'}