diff options
| author | Sergey M․ <dstftw@gmail.com> | 2016-05-02 18:47:35 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2016-05-02 18:47:35 +0600 | 
| commit | df5f4e8888bc02f6064b9b92fbf4cfc4eedd4c1f (patch) | |
| tree | 39a7ab3290d5dfc2f1e568d3358a21600b1fe771 | |
| parent | 7960b0563b957d418ddd36555275d98ba4668c03 (diff) | |
[vevo] Remove superfluous code
| -rw-r--r-- | youtube_dl/extractor/vevo.py | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py index 3cb0343e6..a6177f2cb 100644 --- a/youtube_dl/extractor/vevo.py +++ b/youtube_dl/extractor/vevo.py @@ -205,12 +205,10 @@ class VevoIE(VevoBaseIE):          response = self._download_json(              json_url, video_id, 'Downloading video info', 'Unable to download info')          video_info = response.get('video') or {} -        video_versions = video_info.get('videoVersions')          artist = None          featured_artist = None          uploader = None          view_count = None -        timestamp = None          formats = []          if not video_info: | 
