diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-09 01:07:47 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-09 09:07:10 +0530 |
commit | f2df4071651d124bf7bad47648a6eb7a9ce57369 (patch) | |
tree | a9077290f3fae5060e62453fe41dadd19d161d32 /yt_dlp/options.py | |
parent | ca9def714a71151bec9e16ae0042a2c49f9ec99c (diff) |
[cleanup] Misc cleanup
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 386e8308e..1e23e2b98 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -428,9 +428,9 @@ def create_parser(): action='store_false', dest='mark_watched', help='Do not mark videos watched (default)') general.add_option( - '--no-colors', + '--no-colors', '--no-colours', action='store_true', dest='no_color', default=False, - help='Do not emit color codes in output') + help='Do not emit color codes in output (Alias: --no-colours)') general.add_option( '--compat-options', metavar='OPTS', dest='compat_opts', default=set(), type='str', |