Commit 502fc3ae authored by Brian Rosner's avatar Brian Rosner
Browse files

Fixed #8759 -- Corrected a typo in example code. Thanks James Tauber for the find.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8826 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent a9465a75
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -701,7 +701,7 @@ to happen whenever you save an object. For example (see

        def save(self, force_insert=False, force_update=False):
            do_something()
            super(Blog, self).save(force_inset, force_update) # Call the "real" save() method.
            super(Blog, self).save(force_insert, force_update) # Call the "real" save() method.
            do_something_else()

You can also prevent saving::
@@ -714,7 +714,7 @@ You can also prevent saving::
            if self.name == "Yoko Ono's blog":
                return # Yoko shall never have her own blog!
            else:
                super(Blog, self).save(force_inset, force_update) # Call the "real" save() method.
                super(Blog, self).save(force_insert, force_update) # Call the "real" save() method.

It's important to remember to call the superclass method -- that's that
``super(Blog, self).save()`` business -- to ensure that the object still gets