From bc851653b7bd48ad44d165924ce3aad8b99bc98c Mon Sep 17 00:00:00 2001
From: Joseph Kocherhans <joseph@jkocherhans.com>
Date: Tue, 7 Mar 2006 01:47:43 +0000
Subject: [PATCH] magic-removal: Moved django.parts.auth.formfields to
 django.contrib.auth.forms

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2493 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 django/{parts/auth/formfields.py => contrib/auth/forms.py} | 0
 django/contrib/comments/views/comments.py                  | 2 +-
 django/views/auth/login.py                                 | 2 +-
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename django/{parts/auth/formfields.py => contrib/auth/forms.py} (100%)

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