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:
Diffstat (limited to 'source/blender/python/api2_2x/sceneSequence.c')
-rw-r--r--source/blender/python/api2_2x/sceneSequence.c21
1 files changed, 14 insertions, 7 deletions
diff --git a/source/blender/python/api2_2x/sceneSequence.c b/source/blender/python/api2_2x/sceneSequence.c
index e8b9b99c218..e7c8abe72a2 100644
--- a/source/blender/python/api2_2x/sceneSequence.c
+++ b/source/blender/python/api2_2x/sceneSequence.c
@@ -512,23 +512,30 @@ static PyObject *Sequence_getImages( BPy_Sequence * self )
Strip *strip;
StripElem *se;
int i;
- PyObject *attr;
+ PyObject *list, *ret;
+
+ if (self->seq->type != SEQ_IMAGE) {
+ list = PyList_New(0);
+ ret= Py_BuildValue( "sO", "", list);
+ Py_DECREF(list);
+ return ret;
+ }
- if (self->seq->type != SEQ_IMAGE)
- return PyList_New(0);
/*return EXPP_ReturnPyObjError( PyExc_TypeError,
"Sequence is not an image type" );*/
strip = self->seq->strip;
se = strip->stripdata;
- attr = PyList_New(strip->len);
+ list = PyList_New(strip->len);
for (i=0; i<strip->len; i++, se++) {
- PyList_SetItem( attr, i, PyString_FromString(se->name) );
+ PyList_SetItem( list, i, PyString_FromString(se->name) );
}
-
- return attr;
+
+ ret= Py_BuildValue( "sO", strip->dir, list);
+ Py_DECREF(list);
+ return ret;
}