Skip to content

Commit

Permalink
Fixed small bug in views.auth.login.login
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@520 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Aug 16, 2005
1 parent 72109f4 commit 659ab98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django/views/auth/login.py
Expand Up @@ -22,7 +22,7 @@ def login(request):
else:
errors = {}
response = HttpResponse()
response.session.set_test_cookie()
request.session.set_test_cookie()
t = template_loader.get_template('registration/login')
c = Context(request, {
'form': formfields.FormWrapper(manipulator, request.POST, errors),
Expand Down

0 comments on commit 659ab98

Please sign in to comment.