From f3cda0b77afb2a6e22520b4c9f1c6d111add6ac9 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 13 Jul 2008 17:26:43 +0000 Subject: [PATCH] newforms-admin: Fixed #7702 -- Removed redundant imports in django/contrib/admin/options.py. Thanks, Honza git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7919 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/admin/options.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/django/contrib/admin/options.py b/django/contrib/admin/options.py index 234cfd11ef..42d95257a4 100644 --- a/django/contrib/admin/options.py +++ b/django/contrib/admin/options.py @@ -257,7 +257,6 @@ class ModelAdmin(BaseModelAdmin): # Check that LogEntry, ContentType and the auth context processor are installed. from django.conf import settings if settings.DEBUG: - from django.contrib.contenttypes.models import ContentType from django.contrib.admin.models import LogEntry if not LogEntry._meta.installed: raise ImproperlyConfigured("Put 'django.contrib.admin' in your INSTALLED_APPS setting in order to use the admin application.") @@ -360,7 +359,6 @@ class ModelAdmin(BaseModelAdmin): `form` is a bound Form instance that's verified to be valid. """ from django.contrib.admin.models import LogEntry, ADDITION - from django.contrib.contenttypes.models import ContentType opts = model._meta new_object = form.save(commit=True) @@ -410,7 +408,6 @@ class ModelAdmin(BaseModelAdmin): `formsets` is a sequence of InlineFormSet instances that are verified to be valid. """ from django.contrib.admin.models import LogEntry, CHANGE - from django.contrib.contenttypes.models import ContentType opts = model._meta new_object = form.save(commit=True) pk_value = new_object._get_pk_val() @@ -659,7 +656,6 @@ class ModelAdmin(BaseModelAdmin): def delete_view(self, request, object_id, extra_context=None): "The 'delete' admin view for this model." - from django.contrib.contenttypes.models import ContentType from django.contrib.admin.models import LogEntry, DELETION opts = self.model._meta app_label = opts.app_label @@ -713,7 +709,6 @@ class ModelAdmin(BaseModelAdmin): def history_view(self, request, object_id, extra_context=None): "The 'history' admin view for this model." - from django.contrib.contenttypes.models import ContentType from django.contrib.admin.models import LogEntry model = self.model opts = model._meta