This commit is contained in:
jlrdh 2023-06-29 11:12:27 +02:00 committed by GitHub
commit 1bc28bfa37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,7 +111,7 @@ class SQLitePlugin(object):
# Test if the original callback accepts a 'db' keyword. # Test if the original callback accepts a 'db' keyword.
# Ignore it if it does not need a database handle. # Ignore it if it does not need a database handle.
argspec = inspect.getargspec(_callback) argspec = inspect.getfullargspec(_callback)
if keyword not in argspec.args: if keyword not in argspec.args:
return callback return callback