aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/youtube.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-04-28 19:59:40 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-04-28 19:59:40 +0530
commite28f1c0ae812293b2ebb5f052f8af2cfaede1248 (patch)
tree4b300721346f180b0fd36f4efa26582bb75994ec /yt_dlp/extractor/youtube.py
parentef39f8600a290f1176d13f11894ab35df47ec9d8 (diff)
downloadhypervideo-pre-e28f1c0ae812293b2ebb5f052f8af2cfaede1248.tar.lz
hypervideo-pre-e28f1c0ae812293b2ebb5f052f8af2cfaede1248.tar.xz
hypervideo-pre-e28f1c0ae812293b2ebb5f052f8af2cfaede1248.zip
[cleanup] Fix linter and some typos
* Also remove inconsistent use of `"` in setup.py
Diffstat (limited to 'yt_dlp/extractor/youtube.py')
-rw-r--r--yt_dlp/extractor/youtube.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/youtube.py b/yt_dlp/extractor/youtube.py
index c781c23fc..577f50f09 100644
--- a/yt_dlp/extractor/youtube.py
+++ b/yt_dlp/extractor/youtube.py
@@ -2969,8 +2969,8 @@ class YoutubeTabIE(YoutubeBaseInfoExtractor):
post_renderer, lambda x: x['backstageAttachment']['playlistRenderer']['playlistId'], compat_str)
if playlist_id:
yield self.url_result(
- 'https://www.youtube.com/playlist?list=%s' % playlist_id,
- ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
+ 'https://www.youtube.com/playlist?list=%s' % playlist_id,
+ ie=YoutubeTabIE.ie_key(), video_id=playlist_id)
# inline video links
runs = try_get(post_renderer, lambda x: x['contentText']['runs'], list) or []
for run in runs: