mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Do not use HTML characters in output
This messes up the format when people paste it outside of code tags.
This commit is contained in:
parent
5f4c318844
commit
d2e32f7df5
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ def _hide_login_info(opts):
|
||||||
for private_opt in ['-p', '--password', '-u', '--username', '--video-password']:
|
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'
|
||||||
except ValueError:
|
except ValueError:
|
||||||
pass
|
pass
|
||||||
return opts
|
return opts
|
||||||
|
|
Loading…
Reference in a new issue