From a6e04a859d910c5eba3a6d53ecefb38254404fdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 28 Jan 2019 04:26:10 +0100 Subject: [PATCH] Url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ce673f0..6117722 100644 --- a/README.md +++ b/README.md @@ -1403,7 +1403,7 @@ from urllib.parse import quote, quote_plus, unquote, unquote_plus ### Decode ```text >>> unquote('Can%27t+be+in+URL%21') -"Can't+be+in+URL!"' +"Can't+be+in+URL!" >>> unquote_plus('Can%27t+be+in+URL%21') "Can't be in URL!" ```