diff options
author | BoĊĦtjan Mejak <bostjan.xperia@gmail.com> | 2018-11-25 18:32:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-11-25 18:32:50 (GMT) |
commit | 158695817d736df8b18682866033c87e46252309 (patch) | |
tree | 7c7eb4186fbdea45754381b90fc5921f541cf581 /Lib/urllib | |
parent | 4bb186d7e253ad4def875305e06690181e923dfd (diff) | |
download | cpython-158695817d736df8b18682866033c87e46252309.zip cpython-158695817d736df8b18682866033c87e46252309.tar.gz cpython-158695817d736df8b18682866033c87e46252309.tar.bz2 |
closes bpo-35309: cpath should be capath (GH-10699)
Diffstat (limited to 'Lib/urllib')
-rw-r--r-- | Lib/urllib/request.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index 9d50b68..9a3d399 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -198,7 +198,7 @@ def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, global _opener if cafile or capath or cadefault: import warnings - warnings.warn("cafile, cpath and cadefault are deprecated, use a " + warnings.warn("cafile, capath and cadefault are deprecated, use a " "custom context instead.", DeprecationWarning, 2) if context is not None: raise ValueError( |