Fix error in PointerProperty argument list

Regression in a7b3047
This commit is contained in:
2017-08-23 02:14:33 +10:00
parent 4d8e3b649b
commit f09dee5aed

View File

@@ -2880,7 +2880,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,