summary refs log tree commit diff
diff options
context:
space:
mode:
authorGrzegorz P <Grzechooo@users.noreply.github.com>2017-01-22 20:35:38 +0100
committerSergey M <dstftw@gmail.com>2017-01-23 02:35:38 +0700
commit8bc0800d7cf24b17204f0fb3c6e76327ed8d527f (patch)
treef1707f674222ccdd44648bea25619353439c341c
parenta089545e036619a798aa19f33085f2b0b87a1b0a (diff)
downloadyoutube-dl-8bc0800d7cf24b17204f0fb3c6e76327ed8d527f.tar.gz
youtube-dl-8bc0800d7cf24b17204f0fb3c6e76327ed8d527f.tar.xz
youtube-dl-8bc0800d7cf24b17204f0fb3c6e76327ed8d527f.zip
[youtube:playlist] Fix nonexistent/private playlist detection (closes #11604)
-rw-r--r--youtube_dl/extractor/youtube.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 63597dd16..644653357 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1998,7 +1998,8 @@ class YoutubePlaylistIE(YoutubePlaylistBaseInfoExtractor):
         url = self._TEMPLATE_URL % playlist_id
         page = self._download_webpage(url, playlist_id)
 
-        for match in re.findall(r'<div class="yt-alert-message">([^<]+)</div>', page):
+        # the yt-alert-message now has tabindex attribute (see https://github.com/rg3/youtube-dl/issues/11604)
+        for match in re.findall(r'<div class="yt-alert-message"[^>]*>([^<]+)</div>', page):
             match = match.strip()
             # Check if the playlist exists or is private
             if re.match(r'[^<]*(The|This) playlist (does not exist|is private)[^<]*', match):