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>2012-08-22 20:44:32 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-08-22 20:44:32 +0400
commit1939baa47d6d6cd6cedb7440bc7b8e988fe6c702 (patch)
treeb572c510bdb6356be5f7770d5d71629b168d683a /source/blender/python/intern/bpy_operator.c
parent6143acf8784bdb89c9b93c04c93c1ef0ca6e97e3 (diff)
style cleanup
Diffstat (limited to 'source/blender/python/intern/bpy_operator.c')
-rw-r--r--source/blender/python/intern/bpy_operator.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/python/intern/bpy_operator.c b/source/blender/python/intern/bpy_operator.c
index 90ea589fde4..55ef217e781 100644
--- a/source/blender/python/intern/bpy_operator.c
+++ b/source/blender/python/intern/bpy_operator.c
@@ -160,7 +160,9 @@ static PyObject *pyop_call(PyObject *UNUSED(self), PyObject *args)
if (!PyArg_ParseTuple(args, "sO|O!si:_bpy.ops.call",
&opname, &context_dict, &PyDict_Type, &kw, &context_str, &is_undo))
+ {
return NULL;
+ }
ot = WM_operatortype_find(opname, TRUE);