diff options
author | andrew deryabin <github@djsf.com> | 2015-04-23 17:00:16 +0300 |
---|---|---|
committer | Daniele Varrazzo <daniele.varrazzo@gmail.com> | 2015-05-03 10:30:11 +0100 |
commit | 41639c76100e5f475b59e2e6a0e2685f1bb39948 (patch) | |
tree | a458806b047941fb1539646184d9e1d89f74b250 /lib/extras.py | |
parent | f27ca25d2e1cf2236444ecad9cf6eafb01efb77e (diff) | |
download | psycopg2-41639c76100e5f475b59e2e6a0e2685f1bb39948.tar.gz |
Fixed MinTimeLoggingCursor.callproc()
Diffstat (limited to 'lib/extras.py')
-rw-r--r-- | lib/extras.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/extras.py b/lib/extras.py index a873c4e..c9f1cbc 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -434,7 +434,7 @@ class MinTimeLoggingCursor(LoggingCursor): def callproc(self, procname, vars=None): self.timestamp = _time.time() - return LoggingCursor.execute(self, procname, vars) + return LoggingCursor.callproc(self, procname, vars) # a dbtype and adapter for Python UUID type |