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
This commit is contained in:
parent
c8e071b00d
commit
5a4ad739b7
|
@ -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)]
|
||||
|
||||
|
|
Loading…
Reference in New Issue