Merge pull request #691 from tooxo/fix_playlist_typo
Browse files
pytube/contrib/playlist.py
CHANGED
@@ -196,7 +196,7 @@ class Playlist(Sequence):
|
|
196 |
# only extract the video ids from the video data
|
197 |
map(
|
198 |
lambda x: (
|
199 |
-
f"/watch?
|
200 |
videos
|
201 |
)
|
202 |
)
|
|
|
196 |
# only extract the video ids from the video data
|
197 |
map(
|
198 |
lambda x: (
|
199 |
+
f"/watch?v={x['playlistVideoRenderer']['videoId']}"),
|
200 |
videos
|
201 |
)
|
202 |
)
|