diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-12-06 09:15:04 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-12-06 09:15:04 +0100 |
commit | ef4fd848573b601502ba9142d5ce521294024356 (patch) | |
tree | 8dbccaff38949257f646fc5371dd9c72f2595b68 /youtube_dl/YoutubeDL.py | |
parent | 72135030d1235f608a2b5e0ec007ca8e6e19e3b4 (diff) |
[wistia] Add extractor
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rw-r--r-- | youtube_dl/YoutubeDL.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 8ad7bd1da..07b36a98e 100644 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -488,7 +488,8 @@ class YoutubeDL(object): new_result = ie_result.copy() for f in ('_type', 'url', 'ext', 'player_url', 'formats', 'entries', 'urlhandle', 'ie_key', 'duration', - 'subtitles', 'annotations', 'format'): + 'subtitles', 'annotations', 'format', + 'thumbnail', 'thumbnails'): if f in new_result: del new_result[f] if f in embedded_info: |