mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-26 02:43:43 +03:00
Indentation fixed
This commit is contained in:
parent
c76cace2ef
commit
c51165e2aa
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user