瀏覽代碼

[viki] Remove clean_html call

Yen Chi Hsuan 10 年之前
父節點
當前提交
2eb0192155
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      youtube_dl/extractor/viki.py

+ 0 - 2
youtube_dl/extractor/viki.py

@@ -11,7 +11,6 @@ from ..utils import (
     unescapeHTML,
     unified_strdate,
     US_RATINGS,
-    clean_html,
     determine_ext,
     mimetype2ext,
 )
@@ -89,7 +88,6 @@ class VikiIE(InfoExtractor):
             req, video_id, note='Downloading info page')
         err_msg = self._html_search_regex(r'<div[^>]+class="video-error[^>]+>(.+)</div>', info_webpage, 'error message', default=None)
         if err_msg:
-            err_msg = clean_html(err_msg)
             if 'not available in your region' in err_msg:
                 raise ExtractorError(
                     'Video %s is blocked from your location.' % video_id,