summaryrefslogtreecommitdiff
path: root/django/db/models/sql
diff options
context:
space:
mode:
Diffstat (limited to 'django/db/models/sql')
-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()