From 2e66723d54f27539190432f753a1d67af4f06399 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Tue, 12 Nov 2024 19:11:57 +0200 Subject: [PATCH] Fix warning message. --- Lib/urllib/parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py index b190ebbbe34fad..8d7631d5693ece 100644 --- a/Lib/urllib/parse.py +++ b/Lib/urllib/parse.py @@ -811,7 +811,7 @@ def _unquote(s): if not qs: warnings.warn(f"Accepting {type(qs).__name__} objects with " f"false value in urllib.parse.parse_qsl() is " - f"deprecated as of 3.13", + f"deprecated as of 3.14", DeprecationWarning, stacklevel=_stacklevel + 1) return [] raise