diff options
author | Paul Donohue <git@PaulSD.com> | 2018-04-08 13:35:24 -0400 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2018-04-12 13:28:29 -0400 |
commit | 979253fce9c0bb6ee484a5a786d477a47545d972 (patch) | |
tree | b9229bf46da039bacee673dd9755c584e2be6c5c /docs | |
parent | 8f76939f54924b01b41d4242e71ca98eb35964f2 (diff) | |
download | django-979253fce9c0bb6ee484a5a786d477a47545d972.tar.gz |
[1.11.x] Fixed #29296 -- Fixed crashes in admindocs when a view is a callable object.
Backport of 33a0b7ac815588ed92dca215e153390af8bdbdda from master
Diffstat (limited to 'docs')
-rw-r--r-- | docs/releases/1.11.13.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.11.13.txt b/docs/releases/1.11.13.txt index b9fd3329ef..f72ccd8fd2 100644 --- a/docs/releases/1.11.13.txt +++ b/docs/releases/1.11.13.txt @@ -12,3 +12,6 @@ Bugfixes * Fixed a regression in Django 1.11.8 where altering a field with a unique constraint may drop and rebuild more foreign keys than necessary (:ticket:`29193`). + +* Fixed crashes in ``django.contrib.admindocs`` when a view is a callable + object, such as ``django.contrib.syndication.views.Feed`` (:ticket:`29296`). |