diff --git a/source/blender/python/api2_2x/Armature.c b/source/blender/python/api2_2x/Armature.c index 6acc91ae09d..e8ecd8937d2 100644 --- a/source/blender/python/api2_2x/Armature.c +++ b/source/blender/python/api2_2x/Armature.c @@ -234,7 +234,7 @@ PyObject *BonesDict_GetItem(BPy_BonesDict *self, PyObject* key) } PyOS_snprintf( buffer, sizeof(buffer), - "KeyError: bone %s not found", key_str); + "bone %s not found", key_str); return EXPP_ReturnPyObjError(PyExc_KeyError, buffer ); }