summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdam Johnson <me@adamj.eu>2018-08-02 22:36:02 +0100
committerTim Graham <timograham@gmail.com>2018-08-02 17:36:26 -0400
commit2b19d198b10e09f04f5d76c62cd48b27d1eb93ae (patch)
tree8b2aa420a2ccf013aa34835a74e4f37f0bf48512 /docs
parent221ef69a9b89262456bb7abe0e5a4b2fda4a0695 (diff)
[2.1.x] Removed out of place sentence in QuerySet.count() docs.
Backport of 2e3ba9f5927048655fffa620bbac4f8b048056a4 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/querysets.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt
index c200faf825..98646d5344 100644
--- a/docs/ref/models/querysets.txt
+++ b/docs/ref/models/querysets.txt
@@ -2093,7 +2093,7 @@ where the default is such that at most 999 variables per query are used.
.. method:: count()
Returns an integer representing the number of objects in the database matching
-the ``QuerySet``. The ``count()`` method never raises exceptions.
+the ``QuerySet``.
Example::