diff options
Diffstat (limited to 'youtube_dl/extractor/vodlocker.py')
| -rw-r--r-- | youtube_dl/extractor/vodlocker.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vodlocker.py b/youtube_dl/extractor/vodlocker.py index 68c59364b..affef6507 100644 --- a/youtube_dl/extractor/vodlocker.py +++ b/youtube_dl/extractor/vodlocker.py @@ -10,7 +10,7 @@ from ..utils import (  class VodlockerIE(InfoExtractor): -    _VALID_URL = r'https?://(?:www\.)?vodlocker.com/(?P<id>[0-9a-zA-Z]+)(?:\..*?)?' +    _VALID_URL = r'https?://(?:www\.)?vodlocker\.com/(?P<id>[0-9a-zA-Z]+)(?:\..*?)?'      _TESTS = [{          'url': 'http://vodlocker.com/e8wvyzz4sl42', @@ -44,7 +44,7 @@ class VodlockerIE(InfoExtractor):                  req, video_id, 'Downloading video page')          title = self._search_regex( -            r'id="file_title".*?>\s*(.*?)\s*<span', webpage, 'title') +            r'id="file_title".*?>\s*(.*?)\s*<(?:br|span)', webpage, 'title')          thumbnail = self._search_regex(              r'image:\s*"(http[^\"]+)",', webpage, 'thumbnail')          url = self._search_regex(  | 
