diff options
author | Filippo Valsorda <filippo.valsorda@gmail.com> | 2013-03-29 15:59:13 +0100 |
---|---|---|
committer | Filippo Valsorda <filippo.valsorda@gmail.com> | 2013-03-29 15:59:13 +0100 |
commit | 7decf8951cd500acc6ed7c9ad049996957e26d73 (patch) | |
tree | ffd06563cd7c495f75eea0605f91729c74e40f05 /youtube_dl/utils.py | |
parent | 1f46c152628bdd6b97212ced758b9f83063b5820 (diff) |
fix FunnyOrDieIE, MyVideoIE, TEDIE
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 49af7d7c0..d366c4173 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -311,7 +311,7 @@ def clean_html(html): html = re.sub('<.*?>', '', html) # Replace html entities html = unescapeHTML(html) - return html + return html.strip() def sanitize_open(filename, open_mode): |