summaryrefslogtreecommitdiff
path: root/django/contrib/auth
diff options
context:
space:
mode:
authorBrian Rosner <brosner@gmail.com>2008-07-18 20:23:02 +0000
committerBrian Rosner <brosner@gmail.com>2008-07-18 20:23:02 +0000
commitefc84a8a6348c9932a8a1bd14e7a30ba272df648 (patch)
treef9249ec82a520cb45cbcb973bc0fe5b1eb46dedb /django/contrib/auth
parentdd5197f081b6f0cac77721f24563b05005a686fb (diff)
newforms-admin: Moved contrib ModelAdmin classes to an admin.py file in their respective apps. This is allowed since [7872].
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@7953 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/contrib/auth')
-rw-r--r--django/contrib/auth/models.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/django/contrib/auth/models.py b/django/contrib/auth/models.py
index 83bdb95dab..a0ed4f366f 100644
--- a/django/contrib/auth/models.py
+++ b/django/contrib/auth/models.py
@@ -369,6 +369,3 @@ class AnonymousUser(object):
def is_authenticated(self):
return False
-
-# Register the admin options for these models.
-from django.contrib.auth import admin