mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-22 02:01:50 +00:00
Fix coding style
This commit is contained in:
parent
a4a199b4dc
commit
43a19105d7
1 changed files with 4 additions and 1 deletions
|
@ -165,7 +165,10 @@ class TumblrIE(InfoExtractor):
|
||||||
if iframe_url is None:
|
if iframe_url is None:
|
||||||
return self.url_result(redirect_url, 'Generic')
|
return self.url_result(redirect_url, 'Generic')
|
||||||
|
|
||||||
iframe = self._download_webpage(iframe_url, video_id, 'Downloading iframe page',
|
iframe = self._download_webpage(
|
||||||
|
iframe_url,
|
||||||
|
video_id,
|
||||||
|
'Downloading iframe page',
|
||||||
headers={'Referer': url})
|
headers={'Referer': url})
|
||||||
|
|
||||||
duration = None
|
duration = None
|
||||||
|
|
Loading…
Reference in a new issue