summaryrefslogtreecommitdiff
path: root/django/db/models/sql/subqueries.py
diff options
context:
space:
mode:
authorChristopher Medrela <chris.medrela@gmail.com>2013-11-26 10:43:46 +0100
committerTim Graham <timograham@gmail.com>2013-11-28 08:50:11 -0500
commit7477a4ffde4781f4e84503e66d7f775074089887 (patch)
treed3bbeaa6e808deb92c0fb86cf4ae8163539d84b1 /django/db/models/sql/subqueries.py
parentd1df395f3ae768e495a105db2f85352c44ba1c28 (diff)
Fixed E125 pep8 warnings
Diffstat (limited to 'django/db/models/sql/subqueries.py')
-rw-r--r--django/db/models/sql/subqueries.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/subqueries.py b/django/db/models/sql/subqueries.py
index 79db1ad99a..e9e292e787 100644
--- a/django/db/models/sql/subqueries.py
+++ b/django/db/models/sql/subqueries.py
@@ -61,7 +61,7 @@ class DeleteQuery(Query):
innerq_used_tables = [t for t in innerq.tables
if innerq.alias_refcount[t]]
if ((not innerq_used_tables or innerq_used_tables == self.tables)
- and not len(innerq.having)):
+ and not len(innerq.having)):
# There is only the base table in use in the query, and there is
# no aggregate filtering going on.
self.where = innerq.where