summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2021-05-26 11:19:47 +0200
committerGitHub <noreply@github.com>2021-05-26 11:19:47 +0200
commit12b19a1d76e1a6f80923c8358290d605dacd65d4 (patch)
tree380ae23df39e65b1eb2d83c9b610d7a26dda07d7 /docs
parent1143f3bb5ecaa2be58f2cd9077f147040291659d (diff)
Fixed #32783 -- Fixed crash of autoreloader when __main__ module doesn't have __spec__ attribute.
Regression in ec6d2531c59466924b645f314ac33f54470d7ac3. Thanks JonathanNickelson for the report.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.2.4.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/3.2.4.txt b/docs/releases/3.2.4.txt
index 63e5096334..9941bd7513 100644
--- a/docs/releases/3.2.4.txt
+++ b/docs/releases/3.2.4.txt
@@ -25,3 +25,6 @@ Bugfixes
* Fixed a bug in Django 3.2 that would trigger the auto-reloader for template
changes when directory paths were specified with strings (:ticket:`32744`).
+
+* Fixed a regression in Django 3.2 that caused a crash of auto-reloader with
+ ``AttributeError``, e.g. inside a ``Conda`` environment (:ticket:`32783`).