diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-08-16 23:15:13 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-08-16 23:15:13 +0000 |
| commit | 659ab9846e81d95bb75dbb3c00147324bf0d6541 (patch) | |
| tree | 46d5affcaf60515247f8506458c810300c8d025c | |
| parent | 72109f4e35776c31d5e75174accabfe451abdade (diff) | |
Fixed small bug in views.auth.login.login
git-svn-id: http://code.djangoproject.com/svn/django/trunk@520 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/views/auth/login.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/views/auth/login.py b/django/views/auth/login.py index a8d7d143d2..f272c970ff 100644 --- a/django/views/auth/login.py +++ b/django/views/auth/login.py @@ -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), |
