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>2018-10-01 01:42:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-10-01 02:20:31 +0300
commit8ee4fd0bdfed1faaf89cc3e131e35cda5e8068b6 (patch)
treeffbb5ac4e8002525820c6fef23c94cbe3a651a69 /source/blender/python
parent3cd98d9ef7e6b85ec3c186f27879612265e3d85d (diff)
Cleanup: style
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/gpu/gpu_py_element.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/python/gpu/gpu_py_element.c b/source/blender/python/gpu/gpu_py_element.c
index 63d1f24a3ef..657358d0448 100644
--- a/source/blender/python/gpu/gpu_py_element.c
+++ b/source/blender/python/gpu/gpu_py_element.c
@@ -70,10 +70,10 @@ static PyObject *bpygpu_IndexBuf_new(PyTypeObject *UNUSED(type), PyObject *args,
verts_per_prim = GPU_indexbuf_primitive_len(params.type_id);
if (verts_per_prim == -1) {
- PyErr_Format(PyExc_ValueError,
- "The argument 'type' must be "
- "'POINTS', 'LINES', 'TRIS' or 'LINES_ADJ'");
- return NULL;
+ PyErr_Format(PyExc_ValueError,
+ "The argument 'type' must be "
+ "'POINTS', 'LINES', 'TRIS' or 'LINES_ADJ'");
+ return NULL;
}
if (PyObject_CheckBuffer(params.seq)) {