summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-07-05 20:24:00 -0400
committerTim Graham <timograham@gmail.com>2014-07-05 20:24:19 -0400
commit50ebddad6acf41f3093b7ff7c1332fd4cb617de2 (patch)
treedec8262f4664e5fd3d4710ab29f77c4cfc35f3b3
parent4b30bddb7a01dca77d0d6c2958b47add1f072c94 (diff)
[1.7.x] Fixed flake8 indentation.
Backport of ab431fbd4f from master
-rw-r--r--django/db/migrations/autodetector.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/django/db/migrations/autodetector.py b/django/db/migrations/autodetector.py
index 1bd4888c14..1020e3ccd9 100644
--- a/django/db/migrations/autodetector.py
+++ b/django/db/migrations/autodetector.py
@@ -446,11 +446,11 @@ class MigrationAutodetector(object):
# Depend on the other end of the primary key if it's a relation
if primary_key_rel:
dependencies.append((
- primary_key_rel._meta.app_label,
- primary_key_rel._meta.object_name,
- None,
- True
- ))
+ primary_key_rel._meta.app_label,
+ primary_key_rel._meta.object_name,
+ None,
+ True
+ ))
# Generate creation operation
self.add_operation(
app_label,