possibly fixed issue 1016

This commit is contained in:
mdipierro
2012-09-18 13:35:47 -05:00
parent b16d79e654
commit 5ed41285c0
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.0.9 (2012-09-17 21:37:10) stable
Version 2.0.9 (2012-09-18 13:35:42) stable
+2 -2
View File
@@ -4027,8 +4027,8 @@ class GoogleSQLAdapter(UseDatabaseStoredFile,MySQLAdapter):
self.execute("SET FOREIGN_KEY_CHECKS=1;")
self.execute("SET sql_mode='NO_BACKSLASH_ESCAPES';")
def execute(self,a):
return self.log_execute(a.decode('utf8'))
def execute(self, command, *a, **b):
return self.log_execute(command.decode('utf8'), *a, **b)
class NoSQLAdapter(BaseAdapter):
can_select_for_update = False