diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-09-29 00:23:41 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-09-29 00:23:43 +0200 |
commit | d2e32f7df56ab497175437bffdcdfedbd71ca8d9 (patch) | |
tree | 219b2fc4a878ad01399421990db99d6daf27acfc /youtube_dl/options.py | |
parent | 5f4c318844180d51745303979682a0a482f05328 (diff) |
Do not use HTML characters in output
This messes up the format when people paste it outside of code tags.
Diffstat (limited to 'youtube_dl/options.py')
-rw-r--r-- | youtube_dl/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/options.py b/youtube_dl/options.py index 44dcb1e34..f651337ad 100644 --- 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 |