diff -x .svn -x '*.pyc' -upr django_orig/django/core/management.py django_live/django/core/management.py
old
|
new
|
def get_sql_delete(app):
|
366 | 366 | if hasattr(backend, 'get_drop_sequence'): |
367 | 367 | output.append(backend.get_drop_sequence("%s_%s" % (model._meta.db_table, f.column))) |
368 | 368 | |
369 | | |
370 | | app_label = app_models[0]._meta.app_label |
371 | | |
372 | 369 | # Close database connection explicitly, in case this output is being piped |
373 | 370 | # directly into a database client, to avoid locking issues. |
374 | 371 | if cursor: |