1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2025-01-08 14:17:54 +01:00

coding cnvention

This commit is contained in:
rag-hav 2020-05-04 15:40:37 +05:30
parent a9cef44c29
commit aaa81ca9ff

View File

@ -91,7 +91,8 @@ class XVideosIE(InfoExtractor):
self.report_download_webpage(video_id)
for host in HOSTS:
webpage = self._download_webpage(
'https://www.' + host + '.com/video%s/' % video_id, video_id, note=False, fatal=host == HOSTS[-1], errnote=host == HOSTS[-1])
'https://www.' + host + '.com/video%s/' % video_id, video_id,
note=False, fatal=host == HOSTS[-1], errnote=host == HOSTS[-1])
if webpage:
break