fix previously fixed error msg.

This commit is contained in:
Stephen Swaney 2006-01-14 19:05:33 +00:00
parent adcef46599
commit 148134205f

@ -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 );
}