summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2014-06-23 20:48:33 -0700
committerAndrew Godwin <andrew@aeracode.org>2014-06-23 20:48:33 -0700
commitfe262c0b848c96ef624680d43dc78eae55157967 (patch)
treeb86f074d785a258c1b220ad63da2ff8d59ca50f3 /django
parent0b571753a89f2a7a34c76dea5ee81f821b980779 (diff)
Fixed #22708: Typo in autodetector base dependency gen
Diffstat (limited to 'django')
-rw-r--r--django/db/migrations/autodetector.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/migrations/autodetector.py b/django/db/migrations/autodetector.py
index 6b2cfdd19d..cffd1a8b2f 100644
--- a/django/db/migrations/autodetector.py
+++ b/django/db/migrations/autodetector.py
@@ -438,7 +438,7 @@ class MigrationAutodetector(object):
for base in model_state.bases:
if isinstance(base, six.string_types) and "." in base:
base_app_label, base_name = base.split(".", 1)
- dependencies.append((base_app_label, base_name, None, False))
+ dependencies.append((base_app_label, base_name, None, True))
# Generate creation operation
self.add_operation(
app_label,