Fixed invalid use of PyUnicode_FromFormat() where PyUnicode_FromString()

should have been used.
This commit is contained in:
2010-05-23 12:10:31 +00:00
parent ff3c742211
commit 2212564f18
29 changed files with 29 additions and 29 deletions

View File

@@ -90,7 +90,7 @@ static char UnaryPredicate0D_getName___doc__[] =
static PyObject * UnaryPredicate0D_getName( BPy_UnaryPredicate0D *self )
{
return PyUnicode_FromFormat( self->up0D->getName().c_str() );
return PyUnicode_FromString( self->up0D->getName().c_str() );
}
static PyObject * UnaryPredicate0D___call__( BPy_UnaryPredicate0D *self, PyObject *args, PyObject *kwds)