diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-05-02 02:54:50 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-05-02 02:54:50 +0600 |
commit | 516ea41a7dd5a350e93ea7cc5ca2c1fcbd0cb43b (patch) | |
tree | f4c12eb52840fc27eae82b80523e3dae8389c889 /youtube_dl/extractor/vevo.py | |
parent | e2bd301ce7795597a7e3ef7f5a5446f9ec987883 (diff) |
[vevo] Fix _call_api
Diffstat (limited to 'youtube_dl/extractor/vevo.py')
-rw-r--r-- | youtube_dl/extractor/vevo.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py index 2d1ff05e1..35f974c4e 100644 --- a/youtube_dl/extractor/vevo.py +++ b/youtube_dl/extractor/vevo.py @@ -149,8 +149,8 @@ class VevoIE(InfoExtractor): auth_info = self._parse_json(webpage, video_id) self._api_url_template = self.http_scheme() + '//apiv2.vevo.com/%s?token=' + auth_info['access_token'] - def _call_api(self, path, video_id, note, errnote, fatal=True): - return self._download_json(self._api_url_template % path, video_id, note, errnote) + def _call_api(self, path, *args, **kwargs): + return self._download_json(self._api_url_template % path, *args, **kwargs) def _real_extract(self, url): video_id = self._match_id(url) |