diff options
Diffstat (limited to 'django/db/models/sql')
| -rw-r--r-- | django/db/models/sql/query.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py index 2a3510f992..f5f26b9426 100644 --- a/django/db/models/sql/query.py +++ b/django/db/models/sql/query.py @@ -1484,8 +1484,8 @@ class Query: joins = [alias] # The transform can't be applied yet, as joins must be trimmed later. # To avoid making every caller of this method look up transforms - # directly, compute transforms here and and create a partial that - # converts fields to the appropriate wrapped version. + # directly, compute transforms here and create a partial that converts + # fields to the appropriate wrapped version. def final_transformer(field, alias): return field.get_col(alias) |
