summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Matusiak <numerodix@gmail.com>2014-02-25 20:29:15 +0100
committerTim Graham <timograham@gmail.com>2014-02-25 21:02:35 -0500
commit48a8b714d49d7a4ceee66473aea72c2d8c84a672 (patch)
treecc261cee5cfe61a7de1d151a59b67d80b20f3282
parent3390550f6f645f82354eaffa1d3c89dfa041f1aa (diff)
Fixed bad grammar in a comment.
-rw-r--r--django/db/models/sql/query.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py
index 79a4459e2f..703ed12eda 100644
--- a/django/db/models/sql/query.py
+++ b/django/db/models/sql/query.py
@@ -130,7 +130,7 @@ class Query(object):
# subqueries...)
self.select = []
# The related_select_cols is used for columns needed for
- # select_related - this is populated in compile stage.
+ # select_related - this is populated in the compile stage.
self.related_select_cols = []
self.tables = [] # Aliases in the order they are created.
self.where = where()