Fixing minor bug in code example - missing apostrophe

This commit is contained in:
Peter Manser
2011-08-04 21:47:15 +02:00
parent f238dffc18
commit 18c42e88f5
+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