1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-31 17:39:30 +00:00

Hide the video password on verbose mode

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-10-23 16:32:17 +02:00
parent 93b22c7828
commit 3126050c0f

View file

@ -133,7 +133,7 @@ def parseOpts(overrideArguments=None):
def _hide_login_info(opts):
opts = list(opts)
for private_opt in ['-p', '--password', '-u', '--username']:
for private_opt in ['-p', '--password', '-u', '--username', '--video-password']:
try:
i = opts.index(private_opt)
opts[i+1] = '<PRIVATE>'