Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2013-11-05 12:52:12 +0400
committerThomas Dinges <blender@dingto.org>2013-11-05 12:52:12 +0400
commit28bd03d9b596b3383a02ba8368251da7b0ebf2c9 (patch)
tree0779609db8c3aaf2617639a315284638d989c01b /release/scripts/startup/bl_operators/anim.py
parent9e2beaa1e2149df660594bcf4375a3b125297395 (diff)
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.
Diffstat (limited to 'release/scripts/startup/bl_operators/anim.py')
-rw-r--r--release/scripts/startup/bl_operators/anim.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/release/scripts/startup/bl_operators/anim.py b/release/scripts/startup/bl_operators/anim.py
index 6193611504e..3c4b66514de 100644
--- a/release/scripts/startup/bl_operators/anim.py
+++ b/release/scripts/startup/bl_operators/anim.py
@@ -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'}