Correct some extractor _VALID_URL regexes
[youtube-dl] / youtube_dl / extractor / orf.py
index cfca2a06352287038ff367e0f83fa67bd4cee782..b42eae89aca1bdc894e29a876d06e4c5d49564a0 100644 (file)
@@ -12,7 +12,7 @@ from ..utils import (
 )
 
 class ORFIE(InfoExtractor):
-    _VALID_URL = r'https?://tvthek.orf.at/(programs/.+?/episodes|topics/.+?)/(?P<id>\d+)'
+    _VALID_URL = r'https?://tvthek\.orf\.at/(programs/.+?/episodes|topics/.+?)/(?P<id>\d+)'
 
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)