1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-06 10:59:36 +02:00

[extractor/common] Add raise_geo_restricted

This commit is contained in:
Sergey M․ 2015-09-22 21:50:20 +06:00
parent cb4e421901
commit c430802e32

View File

@ -516,6 +516,12 @@ def raise_login_required(msg='This video is only available for registered users'
'%s. Use --username and --password or --netrc to provide account credentials.' % msg,
expected=True)
@staticmethod
def raise_geo_restricted(msg='This video is not available from your location due to geo restriction'):
raise ExtractorError(
'%s. You might want to use --proxy to workaround.' % msg,
expected=True)
# Methods for following #608
@staticmethod
def url_result(url, ie=None, video_id=None, video_title=None):