From fb16ee5a31256c1e230a697044c3ded2dbdec3e8 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Fri, 9 Aug 2013 17:41:39 +0100 Subject: [PATCH] Remove commented-out print --- django/db/backends/schema.py | 1 - 1 file changed, 1 deletion(-) diff --git a/django/db/backends/schema.py b/django/db/backends/schema.py index b2e6c29e25..9bb6bd2428 100644 --- a/django/db/backends/schema.py +++ b/django/db/backends/schema.py @@ -88,7 +88,6 @@ class BaseDatabaseSchemaEditor(object): cursor = self.connection.cursor() # Log the command we're running, then run it logger.debug("%s; (params %r)" % (sql, params)) - #print("%s; (params %r)" % (sql, params)) cursor.execute(sql, params) def quote_name(self, name):