[util] Move compatibility functions out of util
[youtube-dl] / youtube_dl / extractor / laola1tv.py
index 45ab86b034ddd50b1ec2fa5c7fad6aed658ddd3e..102e29f7a8d03e5b03c920a72b48d3d121ea2fb6 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')