From: Jaime Marquínez Ferrándiz Date: Mon, 12 May 2014 05:59:33 +0000 (+0200) Subject: [youtube:playlist] Improve detection of private lists (#2840) X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=youtube-dl;a=commitdiff_plain;h=e399853d0c5784257ffcb6fba147d0b47d3f9bb6 [youtube:playlist] Improve detection of private lists (#2840) --- diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 67845349e..1f3aa4322 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1437,7 +1437,7 @@ class YoutubePlaylistIE(YoutubeBaseInfoExtractor): more_widget_html = content_html = page # Check if the playlist exists or is private - if re.search(r'
[^<]*?The playlist does not exist[^<]*?
', page) is not None: + if re.search(r'
[^<]*?(The|This) playlist (does not exist|is private)[^<]*?
', page) is not None: raise ExtractorError( u'The playlist doesn\'t exist or is private, use --username or ' '--netrc to access it.',