diff options
Diffstat (limited to 'yt_dlp/extractor/brightcove.py')
-rw-r--r-- | yt_dlp/extractor/brightcove.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/extractor/brightcove.py b/yt_dlp/extractor/brightcove.py index f3d955d6b..bb68dc481 100644 --- a/yt_dlp/extractor/brightcove.py +++ b/yt_dlp/extractor/brightcove.py @@ -549,7 +549,7 @@ class BrightcoveNewIE(AdobePassIE): error.get('message') or error.get('error_subcode') or error['error_code'], expected=True) elif (not self.get_param('allow_unplayable_formats') and sources and num_drm_sources == len(sources)): - raise ExtractorError('This video is DRM protected.', expected=True) + self.report_drm(video_id) self._sort_formats(formats) |