mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[youtube:playlist] Correct playlist ID output
The ID now starts with PL, so we don't need to output that twice.
This commit is contained in:
parent
8f5c0218d8
commit
1db2666916
1 changed files with 1 additions and 1 deletions
|
@ -1419,7 +1419,7 @@ def _real_extract(self, url):
|
|||
self.to_screen(u'Downloading just video %s because of --no-playlist' % video_id)
|
||||
return self.url_result(video_id, 'Youtube', video_id=video_id)
|
||||
else:
|
||||
self.to_screen(u'Downloading playlist PL%s - add --no-playlist to just download video %s' % (playlist_id, video_id))
|
||||
self.to_screen(u'Downloading playlist %s - add --no-playlist to just download video %s' % (playlist_id, video_id))
|
||||
|
||||
if playlist_id.startswith('RD'):
|
||||
# Mixes require a custom extraction process
|
||||
|
|
Loading…
Reference in a new issue