We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c2d978 commit 030345cCopy full SHA for 030345c
Modules/_sqlite/connection.c
@@ -1103,8 +1103,8 @@ int pysqlite_check_thread(pysqlite_Connection* self)
1103
if (self->check_same_thread) {
1104
if (PyThread_get_thread_ident() != self->thread_ident) {
1105
PyErr_Format(pysqlite_ProgrammingError,
1106
- "SQLite objects created in a thread can only be used in that same thread."
1107
- "The object was created in thread id %lu and this is thread id %lu",
+ "SQLite objects created in a thread can only be used in that same thread. "
+ "The object was created in thread id %lu and this is thread id %lu.",
1108
self->thread_ident, PyThread_get_thread_ident());
1109
return 0;
1110
}
0 commit comments