[compat] Mention unquote_plus
authorSergey M․ <dstftw@gmail.com>
Fri, 17 Jul 2015 17:32:43 +0000 (23:32 +0600)
committerSergey M․ <dstftw@gmail.com>
Fri, 17 Jul 2015 17:32:43 +0000 (23:32 +0600)
youtube_dl/compat.py

index a3a2aef53ee02a910d2357431f1c0858a5bfc15f..e950a4688f023776093f950921123b8e75cc8c7a 100644 (file)
@@ -79,7 +79,7 @@ try:
     from urllib.parse import unquote as compat_urllib_parse_unquote
     from urllib.parse import unquote_plus as compat_urllib_parse_unquote_plus
 except ImportError:  # Python 2
-    # HACK: The following are the correct unquote_to_bytes and unquote
+    # HACK: The following are the correct unquote_to_bytes, unquote and unquote_plus
     # implementations from cpython 3.4.3's stdlib. Python 2's version
     # is apparently broken (see https://github.com/rg3/youtube-dl/pull/6244)