Merge pull request #99 from petermanser/develop

Fixing minor bug in code example - missing apostrophe
This commit is contained in:
Kenneth Reitz
2011-08-04 18:07:49 -07:00
+1 -1
View File
@@ -43,7 +43,7 @@ HTTPS? Basic Authentication? ::
Uh oh, we're not authorized! Let's add authentication. ::
>>> r = requests.get(https://httpbin.ep.io/basic-auth/user/pass', auth=('user', 'pass'))
>>> r = requests.get('https://httpbin.ep.io/basic-auth/user/pass', auth=('user', 'pass'))
>>> r.status_code
200