diff options
Diffstat (limited to 'django/db/models/sql/query.py')
-rw-r--r-- | django/db/models/sql/query.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/query.py b/django/db/models/sql/query.py index 0aa07e0b99..103fffa47d 100644 --- a/django/db/models/sql/query.py +++ b/django/db/models/sql/query.py @@ -699,7 +699,7 @@ class Query(BaseExpression): # All concrete fields that are not part of the defer mask must be # loaded. If a relational field is encountered it gets added to the # mask for it be considered if `select_related` and the cycle continues - # by recursively caling this function. + # by recursively calling this function. for field in opts.concrete_fields: field_mask = mask.pop(field.name, None) if field_mask is None: |