Remove sensitive data from logging in messages

This commit is contained in:
Sergey M․ 2017-11-11 20:49:03 +07:00
parent 79d1f8ed68
commit e4d9586562
No known key found for this signature in database
GPG key ID: 2C393E0F18A9236D
14 changed files with 14 additions and 14 deletions

View file

@ -67,7 +67,7 @@ class PatreonIE(InfoExtractor):
'https://www.patreon.com/processLogin',
compat_urllib_parse_urlencode(login_form).encode('utf-8')
)
login_page = self._download_webpage(request, None, note='Logging in as %s' % username)
login_page = self._download_webpage(request, None, note='Logging in')
if re.search(r'onLoginFailed', login_page):
raise ExtractorError('Unable to login, incorrect username and/or password', expected=True)