diff options
| author | JustAnotherArchivist <JustAnotherArchivist@users.noreply.github.com> | 2023-01-14 14:50:10 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-14 18:50:10 +0400 |
| commit | b1d5b2260949f346e0fe13b7495e71c84abff07f (patch) | |
| tree | 8d2bf061d6a2357cc9d2b614fb22c992a96eb172 | |
| parent | a948523b4fb4b0ae7dce965ae67256d3aa81dce2 (diff) | |
| download | urllib3-b1d5b2260949f346e0fe13b7495e71c84abff07f.tar.gz | |
Fix reference to private urllib3.util.ssl_ module in custom context example (#2889)
| -rw-r--r-- | docs/advanced-usage.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/advanced-usage.rst b/docs/advanced-usage.rst index eef9ba26..6d6c1768 100644 --- a/docs/advanced-usage.rst +++ b/docs/advanced-usage.rst @@ -619,7 +619,7 @@ flag that isn't set by default, and then makes a HTTPS request: import ssl from urllib3 import PoolManager - from urllib3.util.ssl_ import create_urllib3_context + from urllib3.util import create_urllib3_context ctx = create_urllib3_context() ctx.load_default_certs() |
