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:
authorTon Roosendaal <ton@blender.org>2007-11-28 15:42:36 +0300
committerTon Roosendaal <ton@blender.org>2007-11-28 15:42:36 +0300
commit4cdaa3ada2cf562fd70ebf671de797136f132273 (patch)
tree66c07fdfb000c71f3a6adb15fad750ead5e5a6c1 /source/blender/python/api2_2x/Object.c
parent7154e84ee1d5a6086eb47b499712d4bbc8a05a8f (diff)
Previous commit (for ipos) missed python code fixes. Apparently makefiles
for python are broken...
Diffstat (limited to 'source/blender/python/api2_2x/Object.c')
-rw-r--r--source/blender/python/api2_2x/Object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Object.c b/source/blender/python/api2_2x/Object.c
index e62f685cdf5..6b3735a6cfd 100644
--- a/source/blender/python/api2_2x/Object.c
+++ b/source/blender/python/api2_2x/Object.c
@@ -2510,7 +2510,7 @@ static PyObject *Object_setConstraintInfluenceForBone( BPy_Object * self,
return EXPP_ReturnPyObjError( PyExc_TypeError,
"expects bonename, constraintname, influenceval" );
- icu = verify_ipocurve((ID *)self->object, ID_CO, boneName, constName,
+ icu = verify_ipocurve((ID *)self->object, ID_CO, boneName, constName, NULL,
CO_ENFORCE);
if (!icu)