diff options
Diffstat (limited to 'hypervideo_dl/extractor/appletrailers.py')
-rw-r--r-- | hypervideo_dl/extractor/appletrailers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_dl/extractor/appletrailers.py b/hypervideo_dl/extractor/appletrailers.py index 10442a5..0abfb43 100644 --- a/hypervideo_dl/extractor/appletrailers.py +++ b/hypervideo_dl/extractor/appletrailers.py @@ -94,7 +94,7 @@ class AppleTrailersIE(InfoExtractor): _JSON_RE = r'iTunes.playURL\((.*?)\);' def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) + mobj = self._match_valid_url(url) movie = mobj.group('movie') uploader_id = mobj.group('company') |