Browse Source

[vevo] Remove superfluous code

Sergey M․ 9 years ago
parent
commit
df5f4e8888
1 changed files with 0 additions and 2 deletions
  1. 0 2
      youtube_dl/extractor/vevo.py

+ 0 - 2
youtube_dl/extractor/vevo.py

@@ -205,12 +205,10 @@ class VevoIE(VevoBaseIE):
         response = self._download_json(
         response = self._download_json(
             json_url, video_id, 'Downloading video info', 'Unable to download info')
             json_url, video_id, 'Downloading video info', 'Unable to download info')
         video_info = response.get('video') or {}
         video_info = response.get('video') or {}
-        video_versions = video_info.get('videoVersions')
         artist = None
         artist = None
         featured_artist = None
         featured_artist = None
         uploader = None
         uploader = None
         view_count = None
         view_count = None
-        timestamp = None
         formats = []
         formats = []
 
 
         if not video_info:
         if not video_info: