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.
This commit is contained in:
Helen Sherwood-Taylor 2016-08-12 19:07:24 +01:00 committed by Tim Graham
parent 00bb47b58f
commit bc1e2d8e8e
7 changed files with 91 additions and 5 deletions

View file

@ -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`).