summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2015-01-09 22:18:34 +0100
committerClaude Paroz <claude@2xlibre.net>2015-01-10 10:05:02 +0100
commitd7bc37d611b43d58be4b430faf0b9813bcde29c6 (patch)
tree3cf286e0f09f2fc89dee888688d0c098669a4bb6 /docs
parentf5c3a8bff57add71b801c9c44442ea0f8fa35858 (diff)
Fixed #24097 -- Prevented AttributeError in redirect_to_login
Thanks Peter Schmidt for the report and the initial patch. Thanks to ​Oktay Sancak for writing the original failing test and Alvin Savoy for supporting contributing back to the community.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.7.3.txt b/docs/releases/1.7.3.txt
index 964c654920..cd0c1efdf7 100644
--- a/docs/releases/1.7.3.txt
+++ b/docs/releases/1.7.3.txt
@@ -20,3 +20,7 @@ Bugfixes
* Fixed a crash in the CSRF middleware when handling non-ASCII referer header
(:ticket:`23815`).
+
+* Fixed a crash in the ``django.contrib.auth.redirect_to_login`` view when
+ passing a :func:`~django.core.urlresolvers.reverse_lazy` result on Python 3
+ (:ticket:`24097`).