[youtube:playlist] Fix nonexistent/private playlist detection (closes #11604)
authorGrzegorz P <Grzechooo@users.noreply.github.com>
Sun, 22 Jan 2017 19:35:38 +0000 (20:35 +0100)
committerSergey M <dstftw@gmail.com>
Sun, 22 Jan 2017 19:35:38 +0000 (02:35 +0700)
youtube_dl/extractor/youtube.py

index 63597dd166723a6bda47b0ea681d6050566c052c..6446533574b78e2ca233a034941b1eb277dbf79d 100644 (file)
@@ -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):