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. --- .../blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/freestyle/intern/python/Iterator') diff --git a/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp b/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp index e6093236901..40a984c2cab 100644 --- a/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp +++ b/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp @@ -154,7 +154,7 @@ int ChainingIterator___init__(BPy_ChainingIterator *self, PyObject *args ) PyObject *ChainingIterator_init( BPy_ChainingIterator *self ) { if( typeid(*(self->c_it)) == typeid(ChainingIterator) ) { - PyErr_SetString(PyExc_TypeError, "init() method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "init() method not properly overridden"); return NULL; } self->c_it->init(); @@ -169,7 +169,7 @@ PyObject *ChainingIterator_traverse( BPy_ChainingIterator *self, PyObject *args return NULL; if( typeid(*(self->c_it)) == typeid(ChainingIterator) ) { - PyErr_SetString(PyExc_TypeError, "traverse() method must be overloaded"); + PyErr_SetString(PyExc_TypeError, "traverse() method not properly overridden"); return NULL; } if( ((BPy_AdjacencyIterator *) py_a_it)->a_it ) -- cgit v1.2.3