aboutsummaryrefslogtreecommitdiffstats
path: root/paste/db.py
diff options
context:
space:
mode:
Diffstat (limited to 'paste/db.py')
-rw-r--r--paste/db.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paste/db.py b/paste/db.py
index c4ee46e..ab25e5f 100644
--- a/paste/db.py
+++ b/paste/db.py
@@ -144,7 +144,7 @@ def connect(
conn.execute("PRAGMA foreign_keys = ON")
conn.execute("PRAGMA journal_mode = WAL")
conn.row_factory = sqlite3.Row
- conn.create_function(name="sha256", narg=1, func=_sha256_udf, deterministic=True)
+ conn.create_function(name="SHA256", narg=1, func=_sha256_udf, deterministic=True)
conn.create_function(
name="DATA_HASH", narg=1, func=_data_hash_udf, deterministic=True
)