Fixed typoes in error messages.

This commit is contained in:
2009-07-31 21:44:59 +00:00
parent d62f844b12
commit 6134a41270
4 changed files with 4 additions and 4 deletions

View File

@@ -162,7 +162,7 @@ PyObject * BinaryPredicate0D___call__( BPy_BinaryPredicate0D *self, PyObject *ar
return NULL;
if( typeid(*(self->bp0D)) == typeid(BinaryPredicate0D) ) {
PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded");
PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden");
return NULL;
}
if (self->bp0D->operator()( *(obj1->if0D) , *(obj2->if0D) ) < 0) {