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:59 -0700
commit48a2e027bf5eeca75b7694ea0b3c271dc46ae094 (patch)
treef3b1cde594c41617e1e2dcb4b3764488e4a63d29 /django
parente4c9ccdbb5295c952a0ca12f988ae1b2164b1623 (diff)
[1.7.x] 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,