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

Fixed #30588 -- Fixed crash of autoreloader when __main__ module doesn't have __file__ attribute.

This commit is contained in:
Tom Forbes
2019-06-26 05:44:10 +01:00
committed by Mariusz Felisiak
parent 698df6a009
commit 8454f6dea4
3 changed files with 10 additions and 1 deletions

View File

@@ -12,3 +12,6 @@ Bugfixes
* Fixed a regression in Django 2.2 where :class:`~django.db.models.Avg`,
:class:`~django.db.models.StdDev`, and :class:`~django.db.models.Variance`
crash with ``filter`` argument (:ticket:`30542`).
* Fixed a regression in Django 2.2.2 where auto-reloader crashes with
``AttributeError``, e.g. when using ``ipdb`` (:ticket:`30588`).