From 86f9ab20b0ad3e7ad060c740adaa75f8b707d7cf Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Tue, 20 Mar 2012 21:04:57 +0000 Subject: [PATCH] Fixed a typo in my previous commit. Apologies. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17771 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/auth/tests/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/contrib/auth/tests/models.py b/django/contrib/auth/tests/models.py index 243a39533dc..5d0e4f1443c 100644 --- a/django/contrib/auth/tests/models.py +++ b/django/contrib/auth/tests/models.py @@ -1,7 +1,7 @@ from django.conf import settings from django.test import TestCase from django.test.utils import override_settings -svn from django.contrib.auth.models import (Group, User, +from django.contrib.auth.models import (Group, User, SiteProfileNotAvailable, UserManager)