aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib_pypy/_sqlite3.py')
-rw-r--r--lib_pypy/_sqlite3.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_pypy/_sqlite3.py b/lib_pypy/_sqlite3.py
index a0e6d8e1b8..16c7f38197 100644
--- a/lib_pypy/_sqlite3.py
+++ b/lib_pypy/_sqlite3.py
@@ -291,7 +291,7 @@ class Connection(object):
raise ProgrammingError(
"SQLite objects created in a thread can only be used in that "
"same thread. The object was created in thread id %d and this "
- "is thread id %d" % (self.__thread_ident, _thread_get_ident()))
+ "is thread id %d." % (self.__thread_ident, _thread_get_ident()))
def _check_thread_wrap(func):
@wraps(func)