summaryrefslogtreecommitdiff
path: root/django/core/management
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@memset.com>2013-10-17 23:27:45 +0100
committerTim Graham <timograham@gmail.com>2013-10-17 20:20:11 -0400
commitdfb4cb9970f86487f0aaa88c5dfcfafa31e4f430 (patch)
tree4762099924f11873e9b6608e6f056939f16410b9 /django/core/management
parentd97bec5ee3a6284d30b613c9070588a60358e7ec (diff)
Fixed #21285 -- Fixed E121,E122 pep8 warnings
Diffstat (limited to 'django/core/management')
-rw-r--r--django/core/management/validation.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/core/management/validation.py b/django/core/management/validation.py
index 9beb47e542..4ec421c699 100644
--- a/django/core/management/validation.py
+++ b/django/core/management/validation.py
@@ -251,9 +251,9 @@ def get_validation_errors(outfile, app=None):
"than one foreign key to %s, which is "
"ambiguous and is not permitted." % (
f.rel.through._meta.object_name,
- from_model._meta.object_name
- )
- )
+ from_model._meta.object_name
+ )
+ )
else:
seen_from = True
elif rel_to == to_model: