From 8ee4fd0bdfed1faaf89cc3e131e35cda5e8068b6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 1 Oct 2018 08:42:26 +1000 Subject: Cleanup: style --- source/blender/python/gpu/gpu_py_element.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/python') 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)) { -- cgit v1.2.3