From 81a509fa409091f65cad4e8ac2a31fcb486ca2c3 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 3 Jul 2012 21:03:39 +0000 Subject: fix error in node template and quiet warning. --- source/blender/python/mathutils/mathutils_Matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python/mathutils') diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c index 5c4c6414f39..5f372abcc69 100644 --- a/source/blender/python/mathutils/mathutils_Matrix.c +++ b/source/blender/python/mathutils/mathutils_Matrix.c @@ -1640,7 +1640,7 @@ static PyObject *Matrix_richcmpr(PyObject *a, PyObject *b, int op) * sequence length */ static int Matrix_len(MatrixObject *self) { - return (self->num_row); + return self->num_row; } /*----------------------------object[]--------------------------- * sequence accessor (get) -- cgit v1.2.3