diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-02-07 12:03:19 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-02-07 12:03:19 +0100 | 
| commit | d914d9d1873b9d9e4d0b5cc20f3f26ef9c12783e (patch) | |
| tree | 9b49f9dd7a3dac479498ee11acbab0675820b7fd | |
| parent | 845d14d377ab8eb54c2c88ddcbb85f59fe7eed78 (diff) | |
[chilloutzone] Add import
| -rw-r--r-- | youtube_dl/extractor/chilloutzone.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/chilloutzone.py b/youtube_dl/extractor/chilloutzone.py index 39e9d962f..e9903c613 100644 --- a/youtube_dl/extractor/chilloutzone.py +++ b/youtube_dl/extractor/chilloutzone.py @@ -5,7 +5,10 @@ import base64  import json  from .common import InfoExtractor -from ..utils import clean_html +from ..utils import ( +    clean_html, +    ExtractorError +)  class ChilloutzoneIE(InfoExtractor): | 
