Fixed typoes in error messages.

This commit is contained in:
2009-07-31 21:44:02 +00:00
parent 4e78dff629
commit d62f844b12
19 changed files with 20 additions and 20 deletions

View File

@@ -174,7 +174,7 @@ PyObject * UnaryFunction0DVec2f___call__( BPy_UnaryFunction0DVec2f *self, PyObje
return NULL;
if( typeid(*(self->uf0D_vec2f)) == typeid(UnaryFunction0D<Vec2f>) ) {
PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded");
PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden");
return NULL;
}
if (self->uf0D_vec2f->operator()(*( ((BPy_Interface0DIterator *) obj)->if0D_it )) < 0) {