commit: d2e32f7df56ab497175437bffdcdfedbd71ca8d9
parent 5f4c318844180d51745303979682a0a482f05328
Author: Philipp Hagemeister <phihag@phihag.de>
Date: Mon, 29 Sep 2014 00:23:41 +0200
Do not use HTML characters in output
This messes up the format when people paste it outside of code tags.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/youtube_dl/options.py b/youtube_dl/options.py
@@ -87,7 +87,7 @@ def parseOpts(overrideArguments=None):
for private_opt in ['-p', '--password', '-u', '--username', '--video-password']:
try:
i = opts.index(private_opt)
- opts[i+1] = '<PRIVATE>'
+ opts[i+1] = 'PRIVATE'
except ValueError:
pass
return opts