Skip to content

Commit

Permalink
Fix warning message.
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiy-storchaka committed Nov 12, 2024
1 parent de87f9f commit 2e66723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/urllib/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2e66723

Please sign in to comment.