1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-06-03 05:19:57 +08:00

- formatting

This commit is contained in:
Hugo Alves De Azevedo
2020-08-28 14:40:03 -03:00
Unverified
parent 39672cdc79
commit c2baf165e4
+1 -1
View File
@@ -46,7 +46,7 @@ class AluraIE(InfoExtractor):
course = self._search_regex(self._VALID_URL, url, 'post url', group='course_name')
video_url = self._VIDEO_URL % (course, video_id)
video_dict = self._download_json(video_url, None, 'Searching for videos', expected_status=[404, 500])
video_dict = self._download_json(video_url, video_id, 'Searching for videos')
if video_dict:
webpage = self._download_webpage(url, video_id)