mirror of
https://github.com/psycopg/psycopg2.git
synced 2025-02-07 12:50:32 +03:00
Fixed syntax error in extras module (closes: #123).
This commit is contained in:
parent
2007652589
commit
31189ef0df
|
@ -1,3 +1,7 @@
|
|||
2006-09-11 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* Fixed syntax error in lib/extras.py (see #123)
|
||||
|
||||
2006-09-02 Federico Di Gregorio <fog@initd.org>
|
||||
|
||||
* psycopg/adapter_mxdatetime.c, psycopg/psycopgmodule.c: fixed last
|
||||
|
|
|
@ -232,4 +232,5 @@ class MinTimeLoggingCursor(LoggingCursor):
|
|||
|
||||
def callproc(self, procname, vars=None):
|
||||
self.timestamp = time.time()
|
||||
return LoggingCursor.execute(self, procname, var)
|
||||
return LoggingCursor.execute(self, procname, vars)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user