diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-11-26 20:53:10 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-11-26 20:53:10 +0700 |
commit | 7512aa986f517c301fb3272584d21c8d5cec720f (patch) | |
tree | 8fb66373c9cad71b415229579b337e84e0ca8f7c /youtube_dl/extractor/orf.py | |
parent | 93f3f10cdcf40bdeb6c61b36bbbc0d0ab45ba66c (diff) |
Fix some only matching tests (closes #14855)
Diffstat (limited to 'youtube_dl/extractor/orf.py')
-rw-r--r-- | youtube_dl/extractor/orf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py index 74fe8017e..c1fb580ca 100644 --- a/youtube_dl/extractor/orf.py +++ b/youtube_dl/extractor/orf.py @@ -49,13 +49,13 @@ class ORFTVthekIE(InfoExtractor): 'params': { 'skip_download': True, # rtsp downloads }, - '_skip': 'Blocked outside of Austria / Germany', + 'skip': 'Blocked outside of Austria / Germany', }, { 'url': 'http://tvthek.orf.at/topic/Fluechtlingskrise/10463081/Heimat-Fremde-Heimat/13879132/Senioren-betreuen-Migrantenkinder/13879141', - 'skip_download': True, + 'only_matching': True, }, { 'url': 'http://tvthek.orf.at/profile/Universum/35429', - 'skip_download': True, + 'only_matching': True, }] def _real_extract(self, url): |