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:
authorStephen Swaney <sswaney@centurytel.net>2006-01-14 22:05:33 +0300
committerStephen Swaney <sswaney@centurytel.net>2006-01-14 22:05:33 +0300
commit148134205fe269ed98539ac0c42c1b431ff29754 (patch)
tree882a2f2d206cb68a99f38f34dce1abd7f6757abf /source/blender/python/api2_2x/Armature.c
parentadcef46599a163576984bb229e3f588c47572101 (diff)
fix previously fixed error msg.
Diffstat (limited to 'source/blender/python/api2_2x/Armature.c')
-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 );
}