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:00 -0400
commitab431fbd4f1b133d0ab9f18cb76fd2b8e9eecc19 (patch)
treefb47f9377c095fcd0df55187b89dd8ce7b75b40d
parent86c74eacd60b578645d81c3d822011ae27286a6f (diff)
Fixed flake8 indentation.
-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,