fixed a minor problem with the sql filter
This commit is contained in:
@@ -1 +1 @@
|
||||
Version 2.4.6-stable+timestamp.2013.05.13.10.11.03
|
||||
Version 2.4.6-stable+timestamp.2013.05.14.00.28.50
|
||||
|
||||
+1
-1
@@ -1775,7 +1775,7 @@ class BaseAdapter(ConnectionPool):
|
||||
LOGGER.debug('SQL: %s' % command)
|
||||
self.db._lastsql = command
|
||||
t0 = time.time()
|
||||
ret = self.cursor.execute(*a, **b)
|
||||
ret = self.cursor.execute(command,*a[1:], **b)
|
||||
self.db._timings.append((command,time.time()-t0))
|
||||
del self.db._timings[:-TIMINGSSIZE]
|
||||
return ret
|
||||
|
||||
Reference in New Issue
Block a user