summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-05-12 07:59:33 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-05-12 07:59:33 +0200
commite399853d0c5784257ffcb6fba147d0b47d3f9bb6 (patch)
tree9fca7467e2efcb55016169b19e11896e0183ff69
parentfbe8053120fed8e514124ce84db8008beb7716bb (diff)
downloadyoutube-dl-e399853d0c5784257ffcb6fba147d0b47d3f9bb6.tar.gz
youtube-dl-e399853d0c5784257ffcb6fba147d0b47d3f9bb6.tar.xz
youtube-dl-e399853d0c5784257ffcb6fba147d0b47d3f9bb6.zip
[youtube:playlist] Improve detection of private lists (#2840)
-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 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'<div class="yt-alert-message">[^<]*?The playlist does not exist[^<]*?</div>', page) is not None:
+        if re.search(r'<div class="yt-alert-message">[^<]*?(The|This) playlist (does not exist|is private)[^<]*?</div>', page) is not None:
             raise ExtractorError(
                 u'The playlist doesn\'t exist or is private, use --username or '
                 '--netrc to access it.',