From a0ef147f29cf2b067fb27b15a1c634d253668e77 Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Tue, 17 Apr 2018 12:29:24 +0200 Subject: [PATCH] bpy consistency fix handler_add(handle) This doesn't change the API, so it doesn't affect any script. However it give more consistent error messages. --- source/blender/python/intern/bpy_rna_callback.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/blender/python/intern/bpy_rna_callback.c b/source/blender/python/intern/bpy_rna_callback.c index 68783feacd9..01a25137a98 100644 --- a/source/blender/python/intern/bpy_rna_callback.c +++ b/source/blender/python/intern/bpy_rna_callback.c @@ -189,7 +189,7 @@ PyObject *pyrna_callback_classmethod_add(PyObject *UNUSED(self), PyObject *args) StructRNA *srna; if (PyTuple_GET_SIZE(args) < 2) { - PyErr_SetString(PyExc_ValueError, "handler_add(handle): expected at least 2 args"); + PyErr_SetString(PyExc_ValueError, "handler_add(handler): expected at least 2 args"); return NULL; } @@ -252,7 +252,7 @@ PyObject *pyrna_callback_classmethod_remove(PyObject *UNUSED(self), PyObject *ar int cb_regiontype; if (PyTuple_GET_SIZE(args) < 2) { - PyErr_SetString(PyExc_ValueError, "callback_remove(handle): expected at least 2 args"); + PyErr_SetString(PyExc_ValueError, "callback_remove(handler): expected at least 2 args"); return NULL; } @@ -263,7 +263,7 @@ PyObject *pyrna_callback_classmethod_remove(PyObject *UNUSED(self), PyObject *ar py_handle = PyTuple_GET_ITEM(args, 1); handle = PyCapsule_GetPointer(py_handle, RNA_CAPSULE_ID); if (handle == NULL) { - PyErr_SetString(PyExc_ValueError, "callback_remove(handle): NULL handle given, invalid or already removed"); + PyErr_SetString(PyExc_ValueError, "callback_remove(handler): NULL handler given, invalid or already removed"); return NULL; }