diff options
| author | Andrew Godwin <andrew@aeracode.org> | 2013-08-09 17:41:39 +0100 |
|---|---|---|
| committer | Andrew Godwin <andrew@aeracode.org> | 2013-08-09 17:41:39 +0100 |
| commit | fb16ee5a31256c1e230a697044c3ded2dbdec3e8 (patch) | |
| tree | 40ccdca1bc74a8d6398c1ed3707df7f56ed8657b | |
| parent | b3cec920a2a7d547944823c539a7ebd99b3af23a (diff) | |
Remove commented-out print
| -rw-r--r-- | django/db/backends/schema.py | 1 |
1 files changed, 0 insertions, 1 deletions
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): |
