Fix error message in sqlite connection thread check. (GH-6028)
This commit is contained in:
parent
7c2d97827f
commit
030345c0bf
|
@ -1104,7 +1104,7 @@ int pysqlite_check_thread(pysqlite_Connection* self)
|
|||
if (PyThread_get_thread_ident() != self->thread_ident) {
|
||||
PyErr_Format(pysqlite_ProgrammingError,
|
||||
"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",
|
||||
"The object was created in thread id %lu and this is thread id %lu.",
|
||||
self->thread_ident, PyThread_get_thread_ident());
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue