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

@@ -81,7 +81,7 @@ static char BinaryPredicate0D_getName___doc__[] =
static PyObject * BinaryPredicate0D_getName( BPy_BinaryPredicate0D *self, PyObject *args)
{
return PyUnicode_FromFormat( self->bp0D->getName().c_str() );
return PyUnicode_FromString( self->bp0D->getName().c_str() );
}
static PyObject * BinaryPredicate0D___call__( BPy_BinaryPredicate0D *self, PyObject *args, PyObject *kwds)