Ronnie Ghose commited on
Commit
9819068
·
unverified ·
2 Parent(s): c0a3853 244e076

Merge pull request #691 from tooxo/fix_playlist_typo

Browse files
Files changed (1) hide show
  1. pytube/contrib/playlist.py +1 -1
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?id={x['playlistVideoRenderer']['videoId']}"),
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
  )