1
0
mirror of https://github.com/django/django.git synced 2024-12-26 02:56:25 +00:00

Remove commented-out print

This commit is contained in:
Andrew Godwin 2013-08-09 17:41:39 +01:00
parent b3cec920a2
commit fb16ee5a31

View File

@ -88,7 +88,6 @@ class BaseDatabaseSchemaEditor(object):
cursor = self.connection.cursor() cursor = self.connection.cursor()
# 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))
#print("%s; (params %r)" % (sql, params))
cursor.execute(sql, params) cursor.execute(sql, params)
def quote_name(self, name): def quote_name(self, name):