summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-01-30 18:28:04 -0500
committerTim Graham <timograham@gmail.com>2018-01-31 09:36:36 -0500
commit0a37ea56d05208e31ed2f29fdffca65b6d92fa2e (patch)
tree1a7e5de3d17c1ad33db179284991a4a403689549 /docs
parentde59132afcd979a28a9db269b550d4b8356ef325 (diff)
Fixed #29091 -- Fixed makemigrations crash if migrations directory doesn't have __init__.py.
Regression in aadd3aeb2ba3153e35bd805c80c901f289a6f333.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.0.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/2.0.2.txt b/docs/releases/2.0.2.txt
index 000236af2c..c6633491d2 100644
--- a/docs/releases/2.0.2.txt
+++ b/docs/releases/2.0.2.txt
@@ -24,3 +24,6 @@ Bugfixes
* Fixed a regression where ``contrib.auth.authenticate()`` crashes if an
authentication backend doesn't accept ``request`` and a later one does
(:ticket:`29071`).
+
+* Fixed a regression where ``makemigrations`` crashes if a migrations directory
+ doesn't have an ``__init__.py`` file (:ticket:`29091`).