소스 검색

[wat] Make geolock a warning (Fixes #3579)

Philipp Hagemeister 11 년 전
부모
커밋
92a17d28ac
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      youtube_dl/extractor/wat.py

+ 2 - 1
youtube_dl/extractor/wat.py

@@ -47,7 +47,8 @@ class WatIE(InfoExtractor):
         video_info = self.download_video_info(real_id)
 
         if video_info.get('geolock'):
-            raise ExtractorError('This content is not available in your area', expected=True)
+            self.report_warning(
+                'This content is marked as not available in your area. Trying anyway ..')
 
         chapters = video_info['chapters']
         first_chapter = chapters[0]