From 72c784c612461b40d2b72e60b1f3738e40fe8f98 Mon Sep 17 00:00:00 2001 From: sepro Date: Sun, 30 Mar 2025 01:11:45 +0100 Subject: [PATCH] Move `(default)` in help string --- yt_dlp/options.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 5f666548b..bca59c8fc 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1423,11 +1423,11 @@ def _alias_callback(option, opt_str, value, parser, opts, nargs): filesystem.add_option( '--mtime', action='store_true', dest='updatetime', default=None, - help='Use the Last-modified header to set the file modification time (default)') + help='Use the Last-modified header to set the file modification time') filesystem.add_option( '--no-mtime', action='store_false', dest='updatetime', - help='Do not use the Last-modified header to set the file modification time') + help='Do not use the Last-modified header to set the file modification time (default)') filesystem.add_option( '--write-description', action='store_true', dest='writedescription', default=False,