diff --git a/django/parts/auth/formfields.py b/django/contrib/auth/forms.py similarity index 100% rename from django/parts/auth/formfields.py rename to django/contrib/auth/forms.py diff --git a/django/contrib/comments/views/comments.py b/django/contrib/comments/views/comments.py index e44cc2924c..cc5b428b40 100644 --- a/django/contrib/comments/views/comments.py +++ b/django/contrib/comments/views/comments.py @@ -8,7 +8,7 @@ from django.template import RequestContext from django.contrib.auth.models import SESSION_KEY from django.contrib.comments.models import Comment, FreeComment, PHOTOS_REQUIRED, PHOTOS_OPTIONAL, RATINGS_REQUIRED, RATINGS_OPTIONAL, IS_PUBLIC from django.contrib.contenttypes.models import ContentType -from django.parts.auth.formfields import AuthenticationForm +from django.contrib.auth.forms import AuthenticationForm from django.http import HttpResponseRedirect from django.utils.text import normalize_newlines from django.conf import settings diff --git a/django/views/auth/login.py b/django/views/auth/login.py index 926ed3f6d5..261a8176fe 100644 --- a/django/views/auth/login.py +++ b/django/views/auth/login.py @@ -1,4 +1,4 @@ -from django.parts.auth.formfields import AuthenticationForm +from django.contrib.auth.forms import AuthenticationForm from django import forms from django.shortcuts import render_to_response from django.template import RequestContext