about summary refs log tree commit diff
path: root/youtube_dl/extractor/orf.py
diff options
context:
space:
mode:
authordst <dstftw@gmail.com>2013-12-04 20:34:47 +0700
committerdst <dstftw@gmail.com>2013-12-04 20:34:47 +0700
commitc0ade33e167d1668c4aa8a6684e7083e6c71dd6e (patch)
tree6fb736fd89b8d187d7de74159deb396c6ec4f042 /youtube_dl/extractor/orf.py
parent87968574293ef87b98f51cf0d7c0958b9f496a7a (diff)
downloadyoutube-dl-c0ade33e167d1668c4aa8a6684e7083e6c71dd6e.tar.gz
youtube-dl-c0ade33e167d1668c4aa8a6684e7083e6c71dd6e.tar.xz
youtube-dl-c0ade33e167d1668c4aa8a6684e7083e6c71dd6e.zip
Correct some extractor _VALID_URL regexes
Diffstat (limited to 'youtube_dl/extractor/orf.py')
-rw-r--r--youtube_dl/extractor/orf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py
index cfca2a063..b42eae89a 100644
--- a/youtube_dl/extractor/orf.py
+++ b/youtube_dl/extractor/orf.py
@@ -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)