mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed typo in docs/ref/models/querysets.txt
This commit is contained in:
parent
36d36818a3
commit
838386815f
1 changed files with 1 additions and 1 deletions
|
@ -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::
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue