From 32e36a17824336c5438b1e84542319480c87883c Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 3 Sep 2017 00:05:11 +1000 Subject: Correct own error simplifying matrix checks --- source/blender/python/bmesh/bmesh_py_ops_call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python/bmesh') diff --git a/source/blender/python/bmesh/bmesh_py_ops_call.c b/source/blender/python/bmesh/bmesh_py_ops_call.c index b8ff0588581..f3fe4ff29e4 100644 --- a/source/blender/python/bmesh/bmesh_py_ops_call.c +++ b/source/blender/python/bmesh/bmesh_py_ops_call.c @@ -205,7 +205,7 @@ static int bpy_slot_from_py( if (!Matrix_ParseAny(value, &pymat)) { return -1; } - if ((size = (pymat->num_col) != pymat->num_row) || (!ELEM(size, 3, 4))) { + if (((size = pymat->num_col) != pymat->num_row) || (!ELEM(size, 3, 4))) { PyErr_Format(PyExc_TypeError, "%.200s: keyword \"%.200s\" expected a 3x3 or 4x4 matrix Matrix", opname, slot_name); -- cgit v1.2.3