Commit db056b2a authored by Nick Smith's avatar Nick Smith Committed by Tim Graham
Browse files

[1.9.x] Fixed typo in docs/ref/models/querysets.txt

Backport of 83838681 from master
parent 8f96859e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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::