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>2011-11-26 21:22:11 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-11-26 21:22:11 +0400
commit3db309ee50db09616750c6ce1b6ab55846d67931 (patch)
treee2df651fc6d85d85bcfef59d08fd99ac1b391c98 /source/blender/python/generic
parentd52a811052c67686845dd1737d42fe65add51d55 (diff)
fix for own error with id props when adding byte strings
Diffstat (limited to 'source/blender/python/generic')
-rw-r--r--source/blender/python/generic/idprop_py_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/generic/idprop_py_api.c b/source/blender/python/generic/idprop_py_api.c
index 73d954057c9..c31dadff3e1 100644
--- a/source/blender/python/generic/idprop_py_api.c
+++ b/source/blender/python/generic/idprop_py_api.c
@@ -151,9 +151,9 @@ PyObject *BPy_IDGroup_WrapData(ID *id, IDProperty *prop, IDProperty *parent)
case IDP_GROUP:
return idprop_py_from_idp_group(id, prop, parent);
case IDP_ARRAY:
- return idprop_py_from_idp_idparray(id, prop);
+ return idprop_py_from_idp_array(id, prop);
case IDP_IDPARRAY: /* this could be better a internal type */
- idprop_py_from_idp_array(id, prop);
+ return idprop_py_from_idp_idparray(id, prop);
default:
Py_RETURN_NONE;
}