diff options
Diffstat (limited to 'youtube_dl/extractor/yahoo.py')
| -rw-r--r-- | youtube_dl/extractor/yahoo.py | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/youtube_dl/extractor/yahoo.py b/youtube_dl/extractor/yahoo.py index 0fdb12243..031226f27 100644 --- a/youtube_dl/extractor/yahoo.py +++ b/youtube_dl/extractor/yahoo.py @@ -6,11 +6,13 @@ import json  import re  from .common import InfoExtractor, SearchInfoExtractor -from ..utils import ( -    ExtractorError, +from ..compat import (      compat_urllib_parse,      compat_urlparse, +) +from ..utils import (      clean_html, +    ExtractorError,      int_or_none,  ) | 
