1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-21 04:29:34 +00:00

[utils] Style

This commit is contained in:
Sergey M․ 2015-11-16 20:24:09 +06:00
parent 7aefc49c40
commit 7a3f0c00ad

View file

@ -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):