From db056b2a63b84001450e5f0e8d9bd7c960c2b35c Mon Sep 17 00:00:00 2001 From: Nick Smith Date: Fri, 27 May 2016 14:12:54 +0100 Subject: [PATCH] [1.9.x] Fixed typo in docs/ref/models/querysets.txt Backport of 838386815f53fe2cba1b42c498420881660079d4 from master --- docs/ref/models/querysets.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 1c488c7e33..5832e77ed5 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -933,7 +933,7 @@ For example, suppose you have these models:: def __str__(self): # __unicode__ on Python 2 return "%s (%s)" % ( self.name, - ", ".join(topping.name or topping in self.toppings.all()), + ", ".join(topping.name for topping in self.toppings.all()), ) and run::