From ab431fbd4f1b133d0ab9f18cb76fd2b8e9eecc19 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 5 Jul 2014 20:24:00 -0400 Subject: [PATCH] Fixed flake8 indentation. --- django/db/migrations/autodetector.py | 10 +++++----- 1 file 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,