summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2013-11-29 16:57:14 -0600
committerAlex Gaynor <alex.gaynor@gmail.com>2013-11-29 16:57:36 -0600
commit9af7e18f3579df18625b9eda70735790f23aeb96 (patch)
treecd9d98218979926a4834b1f3bc3cd47e217266ef
parentb72b85af153848ef5f1f07f5c1e5a81e3563b015 (diff)
Fixed an unescisarily gendered pronoun in a docstring
-rw-r--r--django/contrib/auth/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/views.py b/django/contrib/auth/views.py
index 5e11030f03..013ed9f3e2 100644
--- a/django/contrib/auth/views.py
+++ b/django/contrib/auth/views.py
@@ -98,7 +98,7 @@ def logout(request, next_page=None,
def logout_then_login(request, login_url=None, current_app=None, extra_context=None):
"""
- Logs out the user if he is logged in. Then redirects to the log-in page.
+ Logs out the user if they are logged in. Then redirects to the log-in page.
"""
if not login_url:
login_url = settings.LOGIN_URL