Use inspect.getfullargspec() function because inspect.getargspec() is deprecated
This commit is contained in:
parent
db4b81e2e4
commit
89b15dd8b1
|
@ -104,7 +104,7 @@ class SQLitePlugin(object):
|
|||
|
||||
# Test if the original callback accepts a 'db' keyword.
|
||||
# Ignore it if it does not need a database handle.
|
||||
argspec = inspect.getargspec(_callback)
|
||||
argspec = inspect.getfullargspec(_callback)
|
||||
if keyword not in argspec.args:
|
||||
return callback
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user