fix FunnyOrDieIE, MyVideoIE, TEDIE

This commit is contained in:
Filippo Valsorda 2013-03-29 15:59:13 +01:00
parent 1f46c15262
commit 7decf8951c
2 changed files with 5 additions and 5 deletions

View file

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