diff options
| author | ekatsah <github@hastake.com> | 2013-01-30 21:22:24 +0100 |
|---|---|---|
| committer | ekatsah <github@hastake.com> | 2013-01-30 21:22:24 +0100 |
| commit | 79727abb32a3d149f788cc605afb62824d97f8ec (patch) | |
| tree | 7f0aa3628ca90e5618adcc1081c1ea947d9c66a6 /docs/user | |
| parent | 207a2744aa9f9e31f47647ec6a15710c418c6e95 (diff) | |
| download | python-requests-79727abb32a3d149f788cc605afb62824d97f8ec.tar.gz | |
Update docs/user/advanced.rst
Rephrasing a line in the docs, add explicite mention of "client side certificate" (for indexing and clarity)
Diffstat (limited to 'docs/user')
| -rw-r--r-- | docs/user/advanced.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index c7000906..1dcde171 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -102,7 +102,7 @@ Requests can also ignore verifying the SSL certficate if you set ``verify`` to F By default, ``verify`` is set to True. Option ``verify`` only applies to host certs. -You can also specify the local cert file either as a path or key value pair:: +You can also specify a local cert to use as client side certificate, as a single file (containing the private key and the certificate) or as a tuple of both file's path:: >>> requests.get('https://kennethreitz.com', cert=('/path/server.crt', '/path/key')) <Response [200]> |
