From 7914cd47ca732edf53e5473d5c0f3c532d5c1eaf Mon Sep 17 00:00:00 2001 From: David Wilemski Date: Fri, 17 Jan 2014 20:36:02 -0500 Subject: [PATCH] Fix typo in upgrade docs Removed extra closing parenthesis --- docs/upgrade.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/upgrade.rst b/docs/upgrade.rst index a1fccea2..fadda7c6 100644 --- a/docs/upgrade.rst +++ b/docs/upgrade.rst @@ -270,7 +270,7 @@ queryset you should upgrade to use count:: len(Animal.objects(type="mammal")) # New code - Animal.objects(type="mammal").count()) + Animal.objects(type="mammal").count() .only() now inline with .exclude()