Removing another mention of manipulators

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8123 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
James Bennett 2008-07-27 23:27:16 +00:00
parent fdff91ac2d
commit de9e2ae5bb
1 changed files with 1 additions and 1 deletions

View File

@ -179,7 +179,7 @@ from the request's POST data, sends that to admin@example.com and redirects to
return HttpResponse('Invalid header found.') return HttpResponse('Invalid header found.')
return HttpResponseRedirect('/contact/thanks/') return HttpResponseRedirect('/contact/thanks/')
else: else:
# In reality we'd use a manipulator # In reality we'd use a form class
# to get proper validation errors. # to get proper validation errors.
return HttpResponse('Make sure all fields are entered and valid.') return HttpResponse('Make sure all fields are entered and valid.')