Skip to content

Commit 642015e

Browse files
Make the diff nicer
1 parent 1168dd7 commit 642015e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Modules/_sqlite/cursor.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,8 @@ bind_parameters(pysqlite_state *state, pysqlite_Statement *self,
673673
PyErr_Format(state->ProgrammingError,
674674
"Binding %d ('%s') is a named parameter, but you "
675675
"supplied a sequence which requires nameless (qmark) "
676-
"placeholders.", i+1, name);
676+
"placeholders.",
677+
i+1, name);
677678
}
678679

679680
if (PyTuple_CheckExact(parameters)) {

0 commit comments

Comments
 (0)