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>2010-03-02 17:57:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-03-02 17:57:28 +0300
commitaec7174a42908671953805bb8f6424bd10641d6d (patch)
tree4946064e351328908431332dac7b76febf249e4c /source/blender/python
parentda3802f5590a14c703b100a480928eea8722746b (diff)
fix for OBJ exporting Texface images
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/generic/IDProp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/generic/IDProp.c b/source/blender/python/generic/IDProp.c
index 30b3de0575b..decc28198ff 100644
--- a/source/blender/python/generic/IDProp.c
+++ b/source/blender/python/generic/IDProp.c
@@ -254,7 +254,7 @@ static int idp_sequence_type(PyObject *seq)
return -1;
}
}
- else if (PyMapping_Check(item)) { /*do nothing */
+ else if (PyMapping_Check(item)) {
if(i != 0 && (type != IDP_IDPARRAY)) { /* mixed dict/int */
Py_DECREF(item);
return -1;