mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-22 08:56:34 +03:00
Fixed MinTimeLoggingCursor.callproc()
This commit is contained in:
parent
f27ca25d2e
commit
41639c7610
|
@ -434,7 +434,7 @@ class MinTimeLoggingCursor(LoggingCursor):
|
||||||
|
|
||||||
def callproc(self, procname, vars=None):
|
def callproc(self, procname, vars=None):
|
||||||
self.timestamp = _time.time()
|
self.timestamp = _time.time()
|
||||||
return LoggingCursor.execute(self, procname, vars)
|
return LoggingCursor.callproc(self, procname, vars)
|
||||||
|
|
||||||
|
|
||||||
# a dbtype and adapter for Python UUID type
|
# a dbtype and adapter for Python UUID type
|
||||||
|
|
Loading…
Reference in New Issue
Block a user