logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: 6348671c4a4e9f45cebc107ff4c148ef4970bb39
parent efc57145c10bdf22da9d8571c35ccd0404e3b7c3
Author: Sergey M․ <dstftw@gmail.com>
Date:   Mon,  4 Sep 2017 23:08:07 +0700

[arte] Relax unavailability check (closes #14112)

Diffstat:

Myoutube_dl/extractor/arte.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/arte.py b/youtube_dl/extractor/arte.py @@ -82,7 +82,7 @@ class ArteTVBaseIE(InfoExtractor): vsr = player_info['VSR'] - if not vsr and not player_info.get('VRU'): + if not vsr: raise ExtractorError( 'Video %s is not available' % player_info.get('VID') or video_id, expected=True)