diff options
author | nixxo <c.nixxo@gmail.com> | 2020-10-28 17:04:36 +0100 |
---|---|---|
committer | nixxo <c.nixxo@gmail.com> | 2020-10-28 17:04:36 +0100 |
commit | 0b72c2bc31a3400134182154f23fdd494c838a5a (patch) | |
tree | cd7c8245e74375cc4f46bfad0bab702aed4ce30b | |
parent | c3c18d7b8a035c0099499147be5fcfe5f603e072 (diff) | |
download | hypervideo-pre-0b72c2bc31a3400134182154f23fdd494c838a5a.tar.lz hypervideo-pre-0b72c2bc31a3400134182154f23fdd494c838a5a.tar.xz hypervideo-pre-0b72c2bc31a3400134182154f23fdd494c838a5a.zip |
[skyitalia] removed arbitrary parameter
-rw-r--r-- | youtube_dlc/extractor/skyitalia.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/skyitalia.py b/youtube_dlc/extractor/skyitalia.py index d9c35c3a1..262701c6b 100644 --- a/youtube_dlc/extractor/skyitalia.py +++ b/youtube_dlc/extractor/skyitalia.py @@ -25,7 +25,7 @@ class SkyItaliaBaseIE(InfoExtractor): return video_id raise ExtractorError('Video ID not found.') - def _get_formats(self, video_id, token=_TOKEN): + def _get_formats(self, video_id, token): data_url = self._GET_VIDEO_DATA.replace('{id}', video_id) data_url = data_url.replace('{token}', token) video_data = self._parse_json( |