0
0
mirror of https://github.com/django/django.git synced 2024-11-29 06:03:25 +01:00

Fixed #26595 -- Removed unnecessary save() in one_to_one.txt example.

This commit is contained in:
shiblystory 2016-05-07 16:53:03 +06:00 committed by Tim Graham
parent b26fedacef
commit 6ae617dc57

View File

@ -140,7 +140,6 @@ This of course works in reverse::
Add a Waiter to the Restaurant::
>>> w = r.waiter_set.create(name='Joe')
>>> w.save()
>>> w
<Waiter: Joe the waiter at Demon Dogs the restaurant>