summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-03-24 09:06:57 -0400
committerTim Graham <timograham@gmail.com>2014-03-24 09:08:47 -0400
commiteed7e1d4f6c048e37cf817561c4892374a13ff6b (patch)
treeb6f078720e65e4cdeca31246fc73c6909dd1f3ed /docs
parent416a8580232075d569cf3c386a97067884c67a60 (diff)
Fixed #21665 -- Documented that changes in assertRedirects may be required given new URL escaping behavior.
Thank pdc for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.6.txt3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt
index 5e7134a714..a1e41247f6 100644
--- a/docs/releases/1.6.txt
+++ b/docs/releases/1.6.txt
@@ -584,7 +584,8 @@ to arguments before interpolating them in URL patterns. This bug is fixed in
Django 1.6. If you worked around this bug by applying URL quoting before
passing arguments to :func:`~django.core.urlresolvers.reverse`, this may
result in double-quoting. If this happens, simply remove the URL quoting from
-your code.
+your code. You will also have to replace special characters in URLs used in
+:func:`~django.test.SimpleTestCase.assertRedirects` with their encoded versions.
Storage of IP addresses in the comments app
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~