youtube-dl

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

commit 7a3f0c00ad138eef396ae8fd1583fe29b4c4c684
parent 7aefc49c4013efb5056b2c1237e22c52cb5d3c49
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon, 16 Nov 2015 20:24:09 +0600

[utils] Style

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

diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py @@ -403,7 +403,7 @@ def _htmlentity_transform(entity): pass # Unknown entity in name, return its literal representation - return ('&%s;' % entity) + return '&%s;' % entity def unescapeHTML(s):