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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-03-13 09:51:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-03-13 09:51:07 +0300
commit3964a4f5f6e99fdc9a2b548862b6e94b511dd15c (patch)
tree79e8b4b95d52208abd6985e2bc1e94a54f241f7e /io_scene_x3d
parentde3d28e5ffff73ef9f03cef8eff3e729a2c20dfa (diff)
update for api change
Diffstat (limited to 'io_scene_x3d')
-rw-r--r--io_scene_x3d/import_x3d.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_x3d/import_x3d.py b/io_scene_x3d/import_x3d.py
index e9393234..a72d4ff5 100644
--- a/io_scene_x3d/import_x3d.py
+++ b/io_scene_x3d/import_x3d.py
@@ -2370,7 +2370,7 @@ def action_fcurve_ensure(action, data_path, array_index):
if fcu.data_path == data_path and fcu.array_index == array_index:
return fcu
- return action.fcurves.new(data_path=data_path, array_index=array_index)
+ return action.fcurves.new(data_path=data_path, index=array_index)
def translatePositionInterpolator(node, action, ancestry):