From 148134205fe269ed98539ac0c42c1b431ff29754 Mon Sep 17 00:00:00 2001 From: Stephen Swaney Date: Sat, 14 Jan 2006 19:05:33 +0000 Subject: fix previously fixed error msg. --- source/blender/python/api2_2x/Armature.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python/api2_2x/Armature.c') 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 ); } -- cgit v1.2.3