8000
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 c498cd8 commit 924035aCopy full SHA for 924035a
Modules/_sqlite/connection.c
@@ -1106,8 +1106,8 @@ int pysqlite_check_thread(pysqlite_Connection* self)
1106
if (self->check_same_thread) {
1107
if (PyThread_get_thread_ident() != self->thread_ident) {
1108
PyErr_Format(pysqlite_ProgrammingError,
1109
- "SQLite objects created in a thread can only be used in that same thread."
1110
- "The object was created in thread id %ld and this is thread id %ld",
+ "SQLite objects created in a thread can only be used in that same thread. "
+ "The object was created in thread id %ld and this is thread id %ld.",
1111
self->thread_ident, PyThread_get_thread_ident());
1112
return 0;
1113
}
0 commit comments