diff options
author | pukkandan <pukkandan@gmail.com> | 2020-11-27 00:41:52 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2020-11-27 00:41:52 +0530 |
commit | 2fa90513e569d401143d27d6fd333331a74d10f3 (patch) | |
tree | 27ce2077b026e942d5eddab73dd8e3bdc2faa7aa | |
parent | f0c532a430a07f7965b68b22f9ceb90542b848f6 (diff) | |
download | hypervideo-pre-2fa90513e569d401143d27d6fd333331a74d10f3.tar.lz hypervideo-pre-2fa90513e569d401143d27d6fd333331a74d10f3.tar.xz hypervideo-pre-2fa90513e569d401143d27d6fd333331a74d10f3.zip |
flake8
-rw-r--r-- | youtube_dlc/extractor/youtube.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/youtube.py b/youtube_dlc/extractor/youtube.py index 3570bce71..d23c503ad 100644 --- a/youtube_dlc/extractor/youtube.py +++ b/youtube_dlc/extractor/youtube.py @@ -3269,7 +3269,7 @@ class YoutubeTabIE(YoutubeBaseInfoExtractor): self.to_screen('Downloading just video %s because of --no-playlist' % video_id) return self.url_result(video_id, ie=YoutubeIE.ie_key(), video_id=video_id) self.to_screen('Downloading playlist %s - add --no-playlist to just download video %s' % (playlist_id, video_id)) - + webpage = self._download_webpage(url, item_id) identity_token = self._search_regex( r'\bID_TOKEN["\']\s*:\s*["\'](.+?)["\']', webpage, |