Removed legacy django.db.backend import in sql_delete()

git-svn-id: http://code.djangoproject.com/svn/django/trunk@5980 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-08-20 03:13:03 +00:00
parent e267bec83a
commit f0decc18cf
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ def sql_create(app, style):
def sql_delete(app, style):
"Returns a list of the DROP TABLE SQL statements for the given app."
from django.db import backend, connection, models, get_introspection_module
from django.db import connection, models, get_introspection_module
from django.db.backends.util import truncate_name
introspection = get_introspection_module()