Skip to content

Commit

Permalink
Fixed #10971 -- Corrected code example involving redirect_chain in th…
Browse files Browse the repository at this point in the history
…e testing doc. Thanks yourcelf.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10807 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
kmtracey committed May 17, 2009
1 parent b7c4592 commit 0bb5630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/topics/testing.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)]

Expand Down

0 comments on commit 0bb5630

Please sign in to comment.