From: Sergey M․ Date: Thu, 15 Sep 2016 15:35:12 +0000 (+0700) Subject: [extractor/common] Simplify _get_netrc_login_info and carry long lines X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=dcce092e0aa92799f1e3a51ce5aae611af4d70d5;p=youtube-dl [extractor/common] Simplify _get_netrc_login_info and carry long lines --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 95ea3fca5..4f738b9fc 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -674,11 +674,13 @@ class InfoExtractor(object): username = info[0] password = info[2] else: - raise netrc.NetrcParseError('No authenticators for %s' % netrc_machine) + raise netrc.NetrcParseError( + 'No authenticators for %s' % netrc_machine) except (IOError, netrc.NetrcParseError) as err: - self._downloader.report_warning('parsing .netrc: %s' % error_to_compat_str(err)) + self._downloader.report_warning( + 'parsing .netrc: %s' % error_to_compat_str(err)) - return (username, password) + return username, password def _get_login_info(self, username_option='username', password_option='password', netrc_machine=None): """