Skip to content

Commit 1586958

Browse files
PedanticHackerbenjaminp
authored andcommitted
closes bpo-35309: cpath should be capath (GH-10699)
1 parent 4bb186d commit 1586958

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/urllib/request.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
198198
global _opener
199199
if cafile or capath or cadefault:
200200
import warnings
201-
warnings.warn("cafile, cpath and cadefault are deprecated, use a "
201+
warnings.warn("cafile, capath and cadefault are deprecated, use a "
202202
"custom context instead.", DeprecationWarning, 2)
203203
if context is not None:
204204
raise ValueError(

0 commit comments

Comments
 (0)