fix funky indentation

This commit is contained in:
Benjamin Peterson 2009-03-08 00:21:17 +00:00
parent 15d57653f1
commit 9c1f7b2b04
1 changed files with 4 additions and 4 deletions

View File

@ -1095,11 +1095,11 @@ bytes_richcompare(PyObject *self, PyObject *other, int op)
static void
bytes_dealloc(PyByteArrayObject *self)
{
if (self->ob_exports > 0) {
PyErr_SetString(PyExc_SystemError,
if (self->ob_exports > 0) {
PyErr_SetString(PyExc_SystemError,
"deallocated bytearray object has exported buffers");
PyErr_Print();
}
PyErr_Print();
}
if (self->ob_bytes != 0) {
PyMem_Free(self->ob_bytes);
}