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

View File

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