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:57 +0200
commitbdc1de21992bfbc58e719442d3fb990894b6b713 (patch)
tree9bf936152f628f7c2783021e4efd5db9ab800a0f /docs
parent04965bf92d3064cff1a10dd401b7368e54164148 (diff)
[2.2.x] Fixed #30588 -- Fixed crash of autoreloader when __main__ module doesn't have __file__ attribute.
Backport of 8454f6dea49dddb821bfcb7569ea222bb487dfd1 from master
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`).