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-02-05 06:04:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-05 06:04:26 +0400
commit4acab3eb33db20eef89d0159199429c690b0f2df (patch)
treee3a8f567c4f065d5a34b486b5e6a9b8c049c4d56 /source/blender/python/intern/bpy_operator_wrap.c
parent5c395b69f55560e20c4c1f3e972b8e0759c647c2 (diff)
Code Cleanup: line length and use Py_ssize_t for PyC_AsArray utility function.
Diffstat (limited to 'source/blender/python/intern/bpy_operator_wrap.c')
-rw-r--r--source/blender/python/intern/bpy_operator_wrap.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/source/blender/python/intern/bpy_operator_wrap.c b/source/blender/python/intern/bpy_operator_wrap.c
index 7860762059c..39780e7e257 100644
--- a/source/blender/python/intern/bpy_operator_wrap.c
+++ b/source/blender/python/intern/bpy_operator_wrap.c
@@ -112,7 +112,9 @@ PyObject *PYOP_wrap_macro_define(PyObject *UNUSED(self), PyObject *args)
return NULL;
if (WM_operatortype_find(opname, TRUE) == NULL) {
- PyErr_Format(PyExc_ValueError, "Macro Define: '%s' is not a valid operator id", opname);
+ PyErr_Format(PyExc_ValueError,
+ "Macro Define: '%s' is not a valid operator id",
+ opname);
return NULL;
}
@@ -123,7 +125,9 @@ PyObject *PYOP_wrap_macro_define(PyObject *UNUSED(self), PyObject *args)
ot = WM_operatortype_find(macroname, TRUE);
if (!ot) {
- PyErr_Format(PyExc_ValueError, "Macro Define: '%s' is not a valid macro or hasn't been registered yet", macroname);
+ PyErr_Format(PyExc_ValueError,
+ "Macro Define: '%s' is not a valid macro or hasn't been registered yet",
+ macroname);
return NULL;
}