summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-08-20 03:13:03 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-08-20 03:13:03 +0000
commitf0decc18cf91f7b6666b6cdbe7864300b41ba1ad (patch)
tree6f432c1e01aa462edbafa9cc72cea2d875e5c42d
parente267bec83af02d0e871b82719f17afe867c52dda (diff)
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
-rw-r--r--django/core/management/sql.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/sql.py b/django/core/management/sql.py
index 2c495e40dd..11056bbf3b 100644
--- a/django/core/management/sql.py
+++ b/django/core/management/sql.py
@@ -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()