From d62f844b124b75976abf62f12306ecf14befef3f Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Fri, 31 Jul 2009 21:44:02 +0000 Subject: Fixed typoes in error messages. --- .../intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.cpp') diff --git a/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.cpp b/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.cpp index 06c17d0f635..4d234113da8 100644 --- a/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.cpp +++ b/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.cpp @@ -191,7 +191,7 @@ PyObject * UnaryFunction1DVec2f___call__( BPy_UnaryFunction1DVec2f *self, PyObje return NULL; if( typeid(*(self->uf1D_vec2f)) == typeid(UnaryFunction1D) ) { - PyErr_SetString(PyExc_TypeError, "__call__ method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "__call__ method not properly overridden"); return NULL; } if (self->uf1D_vec2f->operator()(*( ((BPy_Interface1D *) obj)->if1D )) < 0) { -- cgit v1.2.3