diff options
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 9e36e1c52..91e7c1f82 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -313,6 +313,10 @@ def create_parser(): action='store_true', dest='update_self', help='Update this program to latest version') general.add_option( + '--no-update', + action='store_false', dest='update_self', + help='Do not update (default)') + general.add_option( '-i', '--ignore-errors', action='store_true', dest='ignoreerrors', help='Ignore download and postprocessing errors. The download will be considered successful even if the postprocessing fails') |