summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/management.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/core/management.py b/django/core/management.py
index cc0fb12c02..f4f83e698a 100644
--- a/django/core/management.py
+++ b/django/core/management.py
@@ -78,9 +78,6 @@ def get_sql_create(app):
app_models = models.get_models(app, creation_order=True)
for model in app_models:
-
- print "Get create sql for model", model
-
opts = model._meta
connection_name = model_connection_name(model)
output = connection_output.setdefault(connection_name, [])