mirror of https://github.com/django/django.git
Fixed regression introduced by efd1e60
, 'map' returns an iterator on PY3.
This commit is contained in:
parent
ded40142a9
commit
37d46b20fc
|
@ -90,7 +90,7 @@ class BaseDatabaseSchemaEditor(object):
|
||||||
# Log the command we're running, then run it
|
# Log the command we're running, then run it
|
||||||
logger.debug("%s; (params %r)" % (sql, params))
|
logger.debug("%s; (params %r)" % (sql, params))
|
||||||
if self.collect_sql:
|
if self.collect_sql:
|
||||||
self.collected_sql.append((sql % map(self.connection.ops.quote_parameter, params)) + ";")
|
self.collected_sql.append((sql % list(map(self.connection.ops.quote_parameter, params))) + ";")
|
||||||
else:
|
else:
|
||||||
cursor.execute(sql, params)
|
cursor.execute(sql, params)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue