diff --git a/docs/ref/models/querysets.txt b/docs/ref/models/querysets.txt index 6c05c7dc0b..a13bd7e4c8 100644 --- a/docs/ref/models/querysets.txt +++ b/docs/ref/models/querysets.txt @@ -923,7 +923,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::