Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-08-01 01:44:02 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-08-01 01:44:02 +0400
commitd62f844b124b75976abf62f12306ecf14befef3f (patch)
tree217c1ff7fbaf0d0768d5c574bc2381410083f309 /source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp
parent4e78dff6291e6a6fea1a030ce75a190d14b00c79 (diff)
Fixed typoes in error messages.
Diffstat (limited to 'source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp')
-rw-r--r--source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp4
1 files changed, 2 insertions, 2 deletions
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 )