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:37:07 -0500
commit834843ca4fdc474eba4457dee3d99fb9c882ca65 (patch)
tree1be260bc8a7a0d4b4e3e96fb25d8cd6302ba34bc /docs
parent55e16f25e9d2050e95e448f9ab2e4b9fc845a9e5 (diff)
[2.0.x] Fixed #29091 -- Fixed makemigrations crash if migrations directory doesn't have __init__.py.
Regression in aadd3aeb2ba3153e35bd805c80c901f289a6f333. Backport of 0a37ea56d05208e31ed2f29fdffca65b6d92fa2e from master
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`).