summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHelen Sherwood-Taylor <helen@rrdlabs.co.uk>2016-08-12 19:07:24 +0100
committerTim Graham <timograham@gmail.com>2016-08-20 10:01:57 -0400
commitbc1e2d8e8edde6cc7d2657c68242a13ee65a15b8 (patch)
tree2de98fbc0a4b8202b6272484029d29cab553adb3 /docs
parent00bb47b58f974277330f9845aee0702f7a46d736 (diff)
Fixed #27018 -- Fixed admindocs crash with a view in a class.
Generated correct admindocs URLs on Python 3. URLs generate 404s on Python 2, as in older versions of Django.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.10.1.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.10.1.txt b/docs/releases/1.10.1.txt
index 0094f8137e..e8dc05c7eb 100644
--- a/docs/releases/1.10.1.txt
+++ b/docs/releases/1.10.1.txt
@@ -58,3 +58,6 @@ Bugfixes
* Fixed ``makemigrations`` crash if a database is read-only (:ticket:`27054`).
* Removed duplicated managers in ``Model._meta.managers`` (:ticket:`27073`).
+
+* Fixed ``contrib.admindocs`` crash when a view is in a class, such as some of
+ the admin views (:ticket:`27018`).