youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 3c53455d15035a94bcd2bc915f565420e1a4279f
parent bbb43a39fd11c2fdf28ae593eaa994f22ce663bc
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 26 Aug 2015 21:25:37 +0600

[eroprofile] Use raise_login_required

Diffstat:
Myoutube_dl/extractor/eroprofile.py | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/eroprofile.py b/youtube_dl/extractor/eroprofile.py @@ -71,8 +71,7 @@ class EroProfileIE(InfoExtractor): m = re.search(r'You must be logged in to view this video\.', webpage) if m: - raise ExtractorError( - 'This video requires login. Please specify a username and password and try again.', expected=True) + self.raise_login_required('This video requires login') video_id = self._search_regex( [r"glbUpdViews\s*\('\d*','(\d+)'", r'p/report/video/(\d+)'],