Don't call 'encode_parameter' no-op

This commit is contained in:
Erik Johnston 2015-05-05 15:00:30 +01:00
parent d9cc5de9e5
commit 1692dc019d
3 changed files with 0 additions and 10 deletions

View file

@ -167,10 +167,6 @@ class LoggingTransaction(object):
sql = self.database_engine.convert_param_style(sql)
if args and args[0]:
args = list(args)
args[0] = [
self.database_engine.encode_parameter(a) for a in args[0]
]
try:
sql_logger.debug(
"[SQL values] {%s} " + ", ".join(("<%r>",) * len(args[0])),