diff options
Diffstat (limited to 'hypervideo_dl/extractor/viddler.py')
-rw-r--r-- | hypervideo_dl/extractor/viddler.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hypervideo_dl/extractor/viddler.py b/hypervideo_dl/extractor/viddler.py index 6423584..ecc4824 100644 --- a/hypervideo_dl/extractor/viddler.py +++ b/hypervideo_dl/extractor/viddler.py @@ -1,6 +1,5 @@ from __future__ import unicode_literals -import re from .common import InfoExtractor from ..utils import ( @@ -75,7 +74,7 @@ class ViddlerIE(InfoExtractor): }] def _real_extract(self, url): - video_id, secret = re.match(self._VALID_URL, url).groups() + video_id, secret = self._match_valid_url(url).groups() query = { 'video_id': video_id, |