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 25c869e commit d918bbdCopy full SHA for d918bbd
Modules/_sqlite/connection.c
@@ -1125,8 +1125,8 @@ int pysqlite_check_thread(pysqlite_Connection* self)
1125
if (self->check_same_thread) {
1126
if (PyThread_get_thread_ident() != self->thread_ident) {
1127
PyErr_Format(pysqlite_ProgrammingError,
1128
- "SQLite objects created in a thread can only be used in that same thread."
1129
- "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.",
1130
self->thread_ident, PyThread_get_thread_ident());
1131
return 0;
1132
}
0 commit comments