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:
authorCampbell Barton <ideasman42@gmail.com>2007-05-31 17:48:16 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-05-31 17:48:16 +0400
commit0ea46073085676ed4dc5c0d0e18420205c80c86b (patch)
treeb96737b45da6ddf914af6bafef9dc461fa590437 /source/blender/python/api2_2x/Key.c
parent2d8dd194ccd2aec3b27f145c488354fbc81b41fa (diff)
scene.camera was missing from docs
bad bad mistake- key wasnt returning IPO's
Diffstat (limited to 'source/blender/python/api2_2x/Key.c')
-rw-r--r--source/blender/python/api2_2x/Key.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/Key.c b/source/blender/python/api2_2x/Key.c
index 49fd55ed5c2..4e5d4278fd3 100644
--- a/source/blender/python/api2_2x/Key.c
+++ b/source/blender/python/api2_2x/Key.c
@@ -315,7 +315,7 @@ static PyObject *Key_repr( BPy_Key * self )
static PyObject *Key_getIpo( BPy_Key * self )
{
if (self->key->ipo)
- Ipo_CreatePyObject( self->key->ipo );
+ return Ipo_CreatePyObject( self->key->ipo );
Py_RETURN_NONE;
}