[Bf-blender-cvs] [6692af39978] blender-v2.79-release: Fix error in PointerProperty argument list

Campbell Barton noreply at git.blender.org
Mon Sep 4 13:11:58 CEST 2017


Commit: 6692af399784c449df1354eaf4968f6889d8d011
Author: Campbell Barton
Date:   Wed Aug 23 02:14:33 2017 +1000
Branches: blender-v2.79-release
https://developer.blender.org/rB6692af399784c449df1354eaf4968f6889d8d011

Fix error in PointerProperty argument list

Regression in a7b3047

===================================================================

M	source/blender/python/intern/bpy_props.c

===================================================================

diff --git a/source/blender/python/intern/bpy_props.c b/source/blender/python/intern/bpy_props.c
index 362c0281b36..b73ce33cc42 100644
--- a/source/blender/python/intern/bpy_props.c
+++ b/source/blender/python/intern/bpy_props.c
@@ -2892,7 +2892,7 @@ PyObject *BPy_PointerProperty(PyObject *self, PyObject *args, PyObject *kw)
 		PyObject *update_cb = NULL, *poll_cb = NULL;
 
 		if (!PyArg_ParseTupleAndKeywords(args, kw,
-		                                 "s#O|ssO!OOO:PointerProperty",
+		                                 "s#O|ssO!OO:PointerProperty",
 		                                 (char **)kwlist, &id, &id_len,
 		                                 &type, &name, &description,
 		                                 &PySet_Type, &pyopts,



More information about the Bf-blender-cvs mailing list