Commit 5a4ad739 authored by Karen Tracey's avatar Karen Tracey
Browse files

Fixed #10971 -- Corrected code example involving redirect_chain in the testing...

Fixed #10971 -- Corrected code example involving redirect_chain in the testing doc. Thanks yourcelf.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@10807 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent c8e071b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -514,7 +514,7 @@ arguments at time of construction:
        If you had an url ``/redirect_me/`` that redirected to ``/next/``, that
        redirected to ``/final/``, this is what you'd see::

            >>> response = c.get('/redirect_me/')
            >>> response = c.get('/redirect_me/', follow=True)
            >>> response.redirect_chain
            [(u'http://testserver/next/', 302), (u'http://testserver/final/', 302)]