diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-08-28 01:37:57 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-08-28 01:37:57 +0200 |
commit | df53b6358da8c39627220f682fe1d369fef742f9 (patch) | |
tree | 7665f48c84f5411b462d707e031ff73ffee13028 | |
parent | f1a9d64eea0618db15641eb2b36b65caac3562c0 (diff) |
[veehd] Modernize
-rw-r--r-- | youtube_dl/extractor/veehd.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/veehd.py b/youtube_dl/extractor/veehd.py index b1c854a64..77b1f91ce 100644 --- a/youtube_dl/extractor/veehd.py +++ b/youtube_dl/extractor/veehd.py @@ -16,8 +16,9 @@ class VeeHDIE(InfoExtractor): _TEST = { 'url': 'http://veehd.com/video/4686958', - 'file': '4686958.mp4', 'info_dict': { + 'id': '4686958', + 'ext': 'mp4', 'title': 'Time Lapse View from Space ( ISS)', 'uploader_id': 'spotted', 'description': 'md5:f0094c4cf3a72e22bc4e4239ef767ad7', |