[vevo] Remove superfluous code
authorSergey M․ <dstftw@gmail.com>
Mon, 2 May 2016 12:47:35 +0000 (18:47 +0600)
committerSergey M․ <dstftw@gmail.com>
Mon, 2 May 2016 12:47:35 +0000 (18:47 +0600)
youtube_dl/extractor/vevo.py

index 3cb0343e6f0f38c807e5a7ec7e09681242258dd8..a6177f2cbd31d7a760918b4c6687ef11eee81010 100644 (file)
@@ -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: