aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/compat.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-07-17 23:32:43 +0600
committerSergey M․ <dstftw@gmail.com>2015-07-17 23:32:43 +0600
commit4d08161ac23cfdf563b5d79b9f75cde6e6e57178 (patch)
treeaaf8fb570a2156ec132e0d2332ea68e866b86fd1 /youtube_dl/compat.py
parent8954e481404746c65ae1e82a6c5edec69114bfb1 (diff)
downloadyoutube-dl-4d08161ac23cfdf563b5d79b9f75cde6e6e57178.tar.xz
[compat] Mention unquote_plus
Diffstat (limited to 'youtube_dl/compat.py')
-rw-r--r--youtube_dl/compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/compat.py b/youtube_dl/compat.py
index a3a2aef53..e950a4688 100644
--- a/youtube_dl/compat.py
+++ b/youtube_dl/compat.py
@@ -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)