1
0
mirror of https://github.com/django/django.git synced 2025-07-05 10:19:20 +00:00

[mult-db] Removed debug print.

git-svn-id: http://code.djangoproject.com/svn/django/branches/multiple-db-support@3761 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Jason Pellerin 2006-09-14 20:43:30 +00:00
parent b92f683f2d
commit c01d2f4e6a

View File

@ -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, [])