From a33a5880f7af985a2418e87c2debed8130bf96d4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 12 Jan 2018 14:51:15 +1100 Subject: Fix bmesh.utils.face_join arg parsing --- source/blender/python/bmesh/bmesh_py_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python') diff --git a/source/blender/python/bmesh/bmesh_py_utils.c b/source/blender/python/bmesh/bmesh_py_utils.c index fc0cd9e475b..224c8295a9b 100644 --- a/source/blender/python/bmesh/bmesh_py_utils.c +++ b/source/blender/python/bmesh/bmesh_py_utils.c @@ -650,7 +650,7 @@ static PyObject *bpy_bm_utils_face_join(PyObject *UNUSED(self), PyObject *args) bool do_remove = true; if (!PyArg_ParseTuple( - args, "O|i:face_join", + args, "O|O&:face_join", &py_face_array, PyC_ParseBool, &do_remove)) { -- cgit v1.2.3