Fix imports and general cleanup
[youtube-dl] / youtube_dl / extractor / laola1tv.py
index 45ab86b034ddd50b1ec2fa5c7fad6aed658ddd3e..2fd3b4699d288809974ead7519e2bc5ddf9bcc68 100644 (file)
@@ -4,6 +4,7 @@ import random
 import re
 
 from .common import InfoExtractor
+from ..utils import ExtractorError
 
 
 class Laola1TvIE(InfoExtractor):
@@ -23,6 +24,8 @@ class Laola1TvIE(InfoExtractor):
         }
     }
 
+    _BROKEN = True  # Not really - extractor works fine, but f4m downloader does not support live streams yet.
+
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)
         video_id = mobj.group('id')
@@ -72,4 +75,3 @@ class Laola1TvIE(InfoExtractor):
             'categories': categories,
             'ext': 'mp4',
         }
-