summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-04-15 17:55:49 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-04-15 17:55:52 +0200
commit1db2666916f25d9e3d6e73c60fe36e1ce99d1813 (patch)
treef202f2a05ff606398807a7f1176e72f24f7e240e
parent8f5c0218d8b1ed3975d84789b73b34cc7c67d188 (diff)
downloadyoutube-dl-1db2666916f25d9e3d6e73c60fe36e1ce99d1813.tar.gz
youtube-dl-1db2666916f25d9e3d6e73c60fe36e1ce99d1813.tar.xz
youtube-dl-1db2666916f25d9e3d6e73c60fe36e1ce99d1813.zip
[youtube:playlist] Correct playlist ID output
The ID now starts with PL, so we don't need to output that twice.
-rw-r--r--youtube_dl/extractor/youtube.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index ac2d5db4e..c87c7e903 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1419,7 +1419,7 @@ class YoutubePlaylistIE(YoutubeBaseInfoExtractor):
                 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