Author: mtredinnick Date: 2006-07-19 07:48:30 -0500 (Wed, 19 Jul 2006) New Revision: 3376
Modified: django/trunk/django/contrib/auth/models.py Log: Fixed #2377 -- Imported ImproperlyConfigured exception into django.auth.models. Modified: django/trunk/django/contrib/auth/models.py =================================================================== --- django/trunk/django/contrib/auth/models.py 2006-07-19 12:32:32 UTC (rev 3375) +++ django/trunk/django/contrib/auth/models.py 2006-07-19 12:48:30 UTC (rev 3376) @@ -1,4 +1,5 @@ from django.core import validators +from django.core.exceptions import ImproperlyConfigured from django.db import backend, connection, models from django.contrib.contenttypes.models import ContentType from django.utils.translation import gettext_lazy as _ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates -~----------~----~----~----~------~----~------~--~---
