1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-01 18:09:28 +00:00

[googledrive] raise ExtractorError instead of warning

This commit is contained in:
remitamine 2015-07-18 23:31:14 +01:00
parent 36dbca8784
commit 8e92d21ebf

View file

@ -1,7 +1,10 @@
import re import re
from .common import InfoExtractor from .common import InfoExtractor
from ..utils import RegexNotFoundError from ..utils import (
RegexNotFoundError,
ExtractorError,
)
class GoogleDriveEmbedIE(InfoExtractor): class GoogleDriveEmbedIE(InfoExtractor):
_VALID_URL = r'https?://(?:video\.google\.com/get_player\?.*?docid=|(?:docs|drive)\.google\.com/file/d/)(?P<id>[a-zA-Z0-9_-]{28})' _VALID_URL = r'https?://(?:video\.google\.com/get_player\?.*?docid=|(?:docs|drive)\.google\.com/file/d/)(?P<id>[a-zA-Z0-9_-]{28})'
@ -97,10 +100,10 @@ class GoogleDriveIE(InfoExtractor):
webpage, webpage,
'reason' 'reason'
) )
self.report_warning(reason) raise ExtractorError(reason)
return return
except RegexNotFoundError: except RegexNotFoundError:
self.report_warning('not a video') raise ExtractorError('not a video')
return return
fmt_stream_map = fmt_stream_map.split(',') fmt_stream_map = fmt_stream_map.split(',')