From ab6f60aad2b030df476a55e6c227f78e8a1b9ce8 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 10 Dec 2013 01:11:02 +1100 Subject: Python API: when OCIO is disabled use the same version format. --- source/blender/python/intern/bpy_app_ocio.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source') diff --git a/source/blender/python/intern/bpy_app_ocio.c b/source/blender/python/intern/bpy_app_ocio.c index dfcbfe94ead..eff52bc9dae 100644 --- a/source/blender/python/intern/bpy_app_ocio.c +++ b/source/blender/python/intern/bpy_app_ocio.c @@ -63,8 +63,11 @@ static PyObject *make_ocio_info(void) return NULL; } +#ifndef WITH_OCIO #define SetStrItem(str) \ PyStructSequence_SET_ITEM(ocio_info, pos++, PyUnicode_FromString(str)) +#endif + #define SetObjItem(obj) \ PyStructSequence_SET_ITEM(ocio_info, pos++, obj) @@ -77,7 +80,7 @@ static PyObject *make_ocio_info(void) curversion >> 24, (curversion >> 16) % 256, (curversion >> 8) % 256)); #else SetObjItem(PyBool_FromLong(0)); - SetStrItem("Unknown"); + SetObjItem(Py_BuildValue("(iii)", 0, 0, 0)); SetStrItem("Unknown"); #endif -- cgit v1.2.3