Update docs/user/advanced.rst
authorKenneth Reitz <me@kennethreitz.com>
Sat, 7 Jan 2012 18:44:09 +0000 (13:44 -0500)
committerKenneth Reitz <me@kennethreitz.com>
Sat, 7 Jan 2012 18:44:09 +0000 (13:44 -0500)
docs/user/advanced.rst

index 216367a0c757883b7f11b692f0c947687758d76b..d1c2cd0c79297afd041848624541f98427c51c0e 100644 (file)
@@ -53,9 +53,9 @@ Requests can verify SSL certificates for HTTPS requests, just like a web browser
     >>> requests.get('https://kennethreitz.com', verify=True)
     requests.exceptions.SSLError: hostname 'kennethreitz.com' doesn't match either of '*.herokuapp.com', 'herokuapp.com'
 
-I don't have SSL setup on this domain, so it fails. Excellent. I do have certs for httpbin.org though::
+I don't have SSL setup on this domain, so it fails. Excellent. Github does though::
 
-    >>> requests.get('https://httpbin.org', verify=True)
+    >>> requests.get('https://github.com', verify=True)
     <Response [200]>
 
 You can also pass ``verify`` the path to a CA_BUNDLE file for private certs. You can also set the ``REQUESTS_CA_BUNDLE`` environment variable.