Browse Source

[arte] Relax unavailability check (closes #14112)

master-ytdl-org
Sergey M․ 7 years ago
parent
commit
6348671c4a
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/arte.py

+ 1
- 1
youtube_dl/extractor/arte.py View File

@ -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)


Loading…
Cancel
Save