summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-16 16:57:20 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-16 16:57:20 +0000
commit935daf062612f4acd4e9dc143239bf29c5553bc0 (patch)
tree786e3050c526961972a2217ad5cec5d64938f1c2
parent00da60e932967b691d61b3d6af5365c9e1619b62 (diff)
Fixed typo in django.views.auth.login
git-svn-id: http://code.djangoproject.com/svn/django/trunk@515 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/views/auth/login.py2
1 files changed, 1 insertions, 1 deletions
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)