summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/db/models/query.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/django/db/models/query.py b/django/db/models/query.py
index e16a35cce9..5b2c18b25e 100644
--- a/django/db/models/query.py
+++ b/django/db/models/query.py
@@ -202,8 +202,8 @@ class QuerySet(object):
simply returns the length of the cached results set to avoid multiple
SELECT COUNT(*) calls.
"""
- if self._results_cache is not None:
- return len(self._results_cache)
+ if self._result_cache is not None:
+ return len(self._result_cache)
counter = self._clone()
counter._order_by = ()