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
14 changed files with 14 additions and 14 deletions

View File

@ -54,7 +54,7 @@ class DramaFeverBaseIE(AMPIE):
request = sanitized_Request(
self._LOGIN_URL, urlencode_postdata(login_form))
response = self._download_webpage(
request, None, 'Logging in as %s' % username)
request, None, 'Logging in')
if all(logout_pattern not in response
for logout_pattern in ['href="/accounts/logout/"', '>Log out<']):