aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Friedrich Bolz-Tereick <cfbolz@gmx.de>2022-11-16 20:38:08 +0100
committerCarl Friedrich Bolz-Tereick <cfbolz@gmx.de>2022-11-16 20:38:08 +0100
commita28352345a17a28e39babefa35e79b6ded838f61 (patch)
tree3128b48d1f911388c100c62bd26c5e1793d2fdfa
parentneed to check cursor lock in Cursor.close, also lock around __fetch_one_row (diff)
downloadpypy-a28352345a17a28e39babefa35e79b6ded838f61.tar.gz
pypy-a28352345a17a28e39babefa35e79b6ded838f61.tar.bz2
pypy-a28352345a17a28e39babefa35e79b6ded838f61.zip
argh, fix silly wrong indentation problem
-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 cdcc83aefd..1d31ff80df 100644
--- a/lib_pypy/_sqlite3.py
+++ b/lib_pypy/_sqlite3.py
@@ -524,7 +524,7 @@ class Connection(object):
if _lib.sqlite3_libversion_number() < 3008003:
raise NotSupportedError(
"deterministic=True requires SQLite 3.8.3 or higher")
- flags |= _lib.SQLITE_DETERMINISTIC
+ flags |= _lib.SQLITE_DETERMINISTIC
ret = _lib.sqlite3_create_function(self._db, name, nargs,
flags, _ffi.NULL,
closure, _ffi.NULL, _ffi.NULL)