From 935daf062612f4acd4e9dc143239bf29c5553bc0 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 16 Aug 2005 16:57:20 +0000 Subject: [PATCH] Fixed typo in django.views.auth.login git-svn-id: http://code.djangoproject.com/svn/django/trunk@515 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/views/auth/login.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/views/auth/login.py b/django/views/auth/login.py index 5b374c8f52..fdb064d0b0 100644 --- a/django/views/auth/login.py +++ b/django/views/auth/login.py @@ -35,7 +35,7 @@ def login(request): return response def logout(request): - "Logs out the user and displays 'You are logged you' message." + "Logs out the user and displays 'You are logged out' message." if request.session: # Do a redirect to this page until the session has been cleared. response = HttpResponseRedirect(request.path)