summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTom Forbes <tom@tomforb.es>2019-06-26 05:44:10 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-06-26 06:44:10 +0200
commit8454f6dea49dddb821bfcb7569ea222bb487dfd1 (patch)
tree9edde9702497d00d929f54c8490953f72770ca25 /docs
parent698df6a009cb1c4dbd55905264f24f6edf41066e (diff)
Fixed #30588 -- Fixed crash of autoreloader when __main__ module doesn't have __file__ attribute.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.2.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/2.2.3.txt b/docs/releases/2.2.3.txt
index a42e57c779..08c5601349 100644
--- a/docs/releases/2.2.3.txt
+++ b/docs/releases/2.2.3.txt
@@ -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`).