Fixing minor bug in code example - missing apostrophe
authorPeter Manser <mail@petermanser.ch>
Thu, 4 Aug 2011 19:47:15 +0000 (21:47 +0200)
committerPeter Manser <mail@petermanser.ch>
Thu, 4 Aug 2011 19:47:15 +0000 (21:47 +0200)
README.rst

index f4b371463b12c06e3f1f552b80962cdd6ea76dda..96a1f5374066a28fd3ab1eccafa51235234ebab9 100644 (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