diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-21 01:39:29 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-21 01:39:29 +0600 |
commit | bdceea7afde4fe02fff90f84ef1f2fb6ebbac9d3 (patch) | |
tree | 6c69121e7ececd4455287243ca325424231eb95f /youtube_dl/extractor/kaltura.py | |
parent | d80a39cec89e8ddfc3090c3d1b10d3fe105791e1 (diff) |
[kaltura] Clean description
Diffstat (limited to 'youtube_dl/extractor/kaltura.py')
-rw-r--r-- | youtube_dl/extractor/kaltura.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/kaltura.py b/youtube_dl/extractor/kaltura.py index 1eaa09fea..583b1a5ad 100644 --- a/youtube_dl/extractor/kaltura.py +++ b/youtube_dl/extractor/kaltura.py @@ -10,6 +10,7 @@ from ..compat import ( compat_urlparse, ) from ..utils import ( + clean_html, ExtractorError, int_or_none, unsmuggle_url, @@ -166,7 +167,7 @@ class KalturaIE(InfoExtractor): 'id': entry_id, 'title': info['name'], 'formats': formats, - 'description': info.get('description'), + 'description': clean_html(info.get('description')), 'thumbnail': info.get('thumbnailUrl'), 'duration': info.get('duration'), 'timestamp': info.get('createdAt'), |