Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-02-22 04:14:15 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-22 04:14:15 +0400
commitb7fa08f88a260bbd9008c11875cb14052d6c7eb1 (patch)
tree6b4a90e6fdbf6727f224a9130082b2dc027a5088 /source/blender/python
parent1a79abdad2443ff9f12e7efd95ee78a264a9d60a (diff)
Code cleanup: style
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/generic/bgl.c2
1 files changed, 1 insertions, 1 deletions
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++) {