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

Fixed typo in docs/ref/models/querysets.txt

parent 36d36818
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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::