aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-05-02 18:47:35 +0600
committerSergey M․ <dstftw@gmail.com>2016-05-02 18:47:35 +0600
commitdf5f4e8888bc02f6064b9b92fbf4cfc4eedd4c1f (patch)
tree39a7ab3290d5dfc2f1e568d3358a21600b1fe771 /youtube_dl
parent7960b0563b957d418ddd36555275d98ba4668c03 (diff)
downloadyoutube-dl-df5f4e8888bc02f6064b9b92fbf4cfc4eedd4c1f.tar.xz
[vevo] Remove superfluous code
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/vevo.py2
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: