Indentation fixed

This commit is contained in:
Daniele Varrazzo 2011-02-17 19:53:04 +00:00
parent c76cace2ef
commit c51165e2aa

View File

@ -51,12 +51,12 @@ list_quote(listObject *self)
for (i=0; i<len; i++) {
PyObject *quoted;
PyObject *wrapped = PyList_GET_ITEM(self->wrapped, i);
if (wrapped == Py_None)
quoted = Bytes_FromString("NULL");
else
quoted = microprotocol_getquoted(wrapped,
(connectionObject*)self->connection);
PyObject *wrapped = PyList_GET_ITEM(self->wrapped, i);
if (wrapped == Py_None)
quoted = Bytes_FromString("NULL");
else
quoted = microprotocol_getquoted(wrapped,
(connectionObject*)self->connection);
if (quoted == NULL) goto error;
/* here we don't loose a refcnt: SET_ITEM does not change the