diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-11-11 20:49:03 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-11-11 20:52:12 +0700 |
commit | e4d9586562d24cbbea6ee07162290ec602399f37 (patch) | |
tree | 0504862ff6aca7bcea5aa10b5ebd7135b10753ae /youtube_dl/extractor/funimation.py | |
parent | 79d1f8ed6803b6097f0f3cd57f72e0378bdc1f34 (diff) |
Remove sensitive data from logging in messages
Diffstat (limited to 'youtube_dl/extractor/funimation.py')
-rw-r--r-- | youtube_dl/extractor/funimation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/funimation.py b/youtube_dl/extractor/funimation.py index 8c37509ec..107f658ba 100644 --- a/youtube_dl/extractor/funimation.py +++ b/youtube_dl/extractor/funimation.py @@ -57,7 +57,7 @@ class FunimationIE(InfoExtractor): try: data = self._download_json( 'https://prod-api-funimationnow.dadcdigital.com/api/auth/login/', - None, 'Logging in as %s' % username, data=urlencode_postdata({ + None, 'Logging in', data=urlencode_postdata({ 'username': username, 'password': password, })) |