From 45c9ecc82ad4ed99166b4aa6279cd52d80045333 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 13 Nov 2011 01:21:30 -0500 Subject: [PATCH] missing param in quick start --- docs/user/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user/quickstart.rst b/docs/user/quickstart.rst index cdbba6c9..9039ded3 100644 --- a/docs/user/quickstart.rst +++ b/docs/user/quickstart.rst @@ -278,7 +278,7 @@ handling with the ``disable_redirects`` parameter:: If you're using POST, PUT, PATCH, *&c*, you can also explicitly enable redirection as well:: - >>> r = requests.post('http://github.com') + >>> r = requests.post('http://github.com', allow_redirects=True) >>> r.url 'https://github.com/' >>> r.history