瀏覽代碼

[sohu] raise GeoRestrictedError

Remita Amine 8 年之前
父節點
當前提交
c59f703610
共有 1 個文件被更改,包括 3 次插入4 次删除
  1. 3 4
      youtube_dl/extractor/sohu.py

+ 3 - 4
youtube_dl/extractor/sohu.py

@@ -108,12 +108,11 @@ class SohuIE(InfoExtractor):
         if vid_data['play'] != 1:
             if vid_data.get('status') == 12:
                 raise ExtractorError(
-                    'Sohu said: There\'s something wrong in the video.',
+                    '%s said: There\'s something wrong in the video.' % self.IE_NAME,
                     expected=True)
             else:
-                raise ExtractorError(
-                    'Sohu said: The video is only licensed to users in Mainland China.',
-                    expected=True)
+                self.raise_geo_restricted(
+                    '%s said: The video is only licensed to users in Mainland China.' % self.IE_NAME)
 
         formats_json = {}
         for format_id in ('nor', 'high', 'super', 'ori', 'h2644k', 'h2654k'):