summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarten Kenbeek <marten.knbk@gmail.com>2015-05-24 21:17:39 +0200
committerTim Graham <timograham@gmail.com>2015-05-25 13:56:37 -0400
commit1ac4c7d415750ddc648cbf888bc2fbcde933f799 (patch)
tree2fc32e367b57db1fe3773f246d436e1053afc8f3 /docs
parent122e688a9c2fa71f47f13f134ab18cf5ea668e7a (diff)
[1.8.x] Fixed #24848 -- Fixed ValueError for faulty migrations module.
Added apps to unmigrated apps if the migrations module is a file or a folder missing __init__.py. Thanks to Ernest0x for the bug report. Backport of d73176a84273c06fa11075c65293ec28497a8423 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.8.3.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.8.3.txt b/docs/releases/1.8.3.txt
index a8a649cdf0..09aa2d8fe7 100644
--- a/docs/releases/1.8.3.txt
+++ b/docs/releases/1.8.3.txt
@@ -11,3 +11,6 @@ Bugfixes
* Fixed ``BaseRangeField.prepare_value()`` to use each ``base_field``’s
``prepare_value()`` method (:ticket:`24841`).
+
+* Fixed crash during :djadmin:`makemigrations` if a migrations module either
+ is missing ``__init__.py`` or is a file (:ticket:`24848`).