diff options
| author | Preston Holmes <preston@ptone.com> | 2013-09-24 05:22:05 -0700 |
|---|---|---|
| committer | Preston Holmes <preston@ptone.com> | 2013-09-24 05:22:05 -0700 |
| commit | fd8d7db4d7f5329fc2e2b348fc60ed6e81d47b13 (patch) | |
| tree | 3ceb65b71a8fd34a024eb3270b949bf7e2a156b6 | |
| parent | 53c7d66869636a6cf2b8c03c4de01ddff16f9892 (diff) | |
| parent | 8e737cf28212ba65d93e62b58a21d929e0bced26 (diff) | |
Merge pull request #1675 from NiGhTTraX/typoFix
Fixed #21152: Corrected small grammatical error in comment.
| -rw-r--r-- | django/db/models/sql/subqueries.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/subqueries.py b/django/db/models/sql/subqueries.py index 3f2e4d547f..11360aa037 100644 --- a/django/db/models/sql/subqueries.py +++ b/django/db/models/sql/subqueries.py @@ -62,7 +62,7 @@ class DeleteQuery(Query): if innerq.alias_refcount[t]] if ((not innerq_used_tables or innerq_used_tables == self.tables) and not len(innerq.having)): - # There is only the base table in use in the query, and there are + # There is only the base table in use in the query, and there is # no aggregate filtering going on. self.where = innerq.where else: |
