youtube-dl

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

commit 411e5b88c9d87f7deac35130d77f0c7243ff2a9d
parent b4c299bad032c51736f52117fe8154751aecd6da
Author: Sergey M? <dstftw@gmail.com>
Date:   Fri, 11 Dec 2015 21:13:49 +0600

[funimation] Fix login message

Diffstat:
Myoutube_dl/extractor/funimation.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/funimation.py b/youtube_dl/extractor/funimation.py @@ -38,7 +38,8 @@ class FunimationIE(InfoExtractor): login_request = sanitized_Request(login_url, data) login_request.add_header('Content-Type', 'application/x-www-form-urlencoded') try: - login = self._download_webpage(login_request, login_url) + login = self._download_webpage( + login_request, None, 'Logging in as %s' % username) except ExtractorError as e: if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403: raise ExtractorError('Funimation is not available in your region.', expected=True)