diff options
Diffstat (limited to 'youtube_dl/extractor/hostingbulk.py')
| -rw-r--r-- | youtube_dl/extractor/hostingbulk.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/youtube_dl/extractor/hostingbulk.py b/youtube_dl/extractor/hostingbulk.py index 8e812b669..704d0285d 100644 --- a/youtube_dl/extractor/hostingbulk.py +++ b/youtube_dl/extractor/hostingbulk.py @@ -4,9 +4,11 @@ from __future__ import unicode_literals  import re  from .common import InfoExtractor +from ..compat import ( +    compat_urllib_request, +)  from ..utils import (      ExtractorError, -    compat_urllib_request,      int_or_none,      urlencode_postdata,  ) @@ -30,9 +32,7 @@ class HostingBulkIE(InfoExtractor):      }      def _real_extract(self, url): -        mobj = re.match(self._VALID_URL, url) -        video_id = mobj.group('id') - +        video_id = self._match_id(url)          url = 'http://hostingbulk.com/{0:}.html'.format(video_id)          # Custom request with cookie to set language to English, so our file | 
