From: David Fischer Date: Sat, 2 Mar 2013 04:36:42 +0000 (-0800) Subject: Github URL fix X-Git-Tag: v1.2.0~32^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=38f2581d6ff4d7ca8011929685917b931f256b77;p=services%2Fpython-requests.git Github URL fix --- diff --git a/docs/user/quickstart.rst b/docs/user/quickstart.rst index 46ce580..3021336 100644 --- a/docs/user/quickstart.rst +++ b/docs/user/quickstart.rst @@ -141,7 +141,7 @@ In the rare case that you'd like to get the raw socket response from the server, you can access ``r.raw``. If you want to do this, make sure you set ``stream=True`` in your initial request. Once you do, you can do this:: - >>> r = requests.get('https:/github.com/timeline.json', stream=True) + >>> r = requests.get('https://github.com/timeline.json', stream=True) >>> r.raw >>> r.raw.read(10)