diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-09-04 23:08:07 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-09-04 23:08:40 +0700 |
commit | 6348671c4a4e9f45cebc107ff4c148ef4970bb39 (patch) | |
tree | 3a7c31bb34ff06bc69c8bc7e79ae0da2b1da7fb8 | |
parent | efc57145c10bdf22da9d8571c35ccd0404e3b7c3 (diff) |
[arte] Relax unavailability check (closes #14112)
-rw-r--r-- | youtube_dl/extractor/arte.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/arte.py b/youtube_dl/extractor/arte.py index 02613cf5d..5cde90c5b 100644 --- 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) |