From b7fa08f88a260bbd9008c11875cb14052d6c7eb1 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 22 Feb 2014 11:14:15 +1100 Subject: Code cleanup: style --- source/blender/python/generic/bgl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python') diff --git a/source/blender/python/generic/bgl.c b/source/blender/python/generic/bgl.c index 7ade40e627c..d1d0ec96315 100644 --- a/source/blender/python/generic/bgl.c +++ b/source/blender/python/generic/bgl.c @@ -420,7 +420,7 @@ static PyObject *Buffer_slice(Buffer *self, int begin, int end) if (begin < 0) begin = 0; if (end > self->dimensions[0]) end = self->dimensions[0]; if (begin > end) begin = end; - + list = PyList_New(end - begin); for (count = begin; count < end; count++) { -- cgit v1.2.3