1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #32783 -- Fixed crash of autoreloader when __main__ module doesn't have __spec__ attribute.

Regression in ec6d2531c5.

Thanks JonathanNickelson for the report.
This commit is contained in:
Mariusz Felisiak
2021-05-26 11:19:47 +02:00
committed by GitHub
parent 1143f3bb5e
commit 12b19a1d76
3 changed files with 16 additions and 1 deletions

View File

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