AsIs str fix by Matt Goodall.

This commit is contained in:
Federico Di Gregorio 2005-03-03 15:01:45 +00:00
parent 131b8ac1c5
commit 22ce01eec7

View File

@ -40,7 +40,7 @@ asis_str(asisObject *self)
return PyString_FromString("NULL"); return PyString_FromString("NULL");
} }
else { else {
return PyObject_Repr(self->wrapped); return PyObject_Str(self->wrapped);
} }
} }