From: Benjamin Peterson Date: Sun, 8 Mar 2009 00:21:17 +0000 (+0000) Subject: fix funky indentation X-Git-Tag: v2.7a1~1886 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c1f7b2b04d1bbd92e575044f6fc3929c720cd72;p=python fix funky indentation --- diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index ad3736696e..4921a88077 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -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); }