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:
-rw-r--r--source/blender/python/api2_2x/Armature.c2
1 files changed, 1 insertions, 1 deletions
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 );
}