From 48a8b714d49d7a4ceee66473aea72c2d8c84a672 Mon Sep 17 00:00:00 2001 From: Martin Matusiak Date: Tue, 25 Feb 2014 20:29:15 +0100 Subject: [PATCH] Fixed bad grammar in a comment. --- django/db/models/sql/query.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()