youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 4d08161ac23cfdf563b5d79b9f75cde6e6e57178
parent 8954e481404746c65ae1e82a6c5edec69114bfb1
Author: Sergey M․ <dstftw@gmail.com>
Date:   Fri, 17 Jul 2015 23:32:43 +0600

[compat] Mention unquote_plus

Diffstat:
Myoutube_dl/compat.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)