From beeb6336e9fbf215b237ef530cbffddb2e57a7a7 Mon Sep 17 00:00:00 2001 From: Timmy Welch Date: Sun, 23 Jun 2024 15:20:51 -0700 Subject: [PATCH] Fix default value of --skip-existing-tags --- comictaggerlib/ctsettings/commandline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comictaggerlib/ctsettings/commandline.py b/comictaggerlib/ctsettings/commandline.py index 5bb7cce..a702cb8 100644 --- a/comictaggerlib/ctsettings/commandline.py +++ b/comictaggerlib/ctsettings/commandline.py @@ -156,7 +156,7 @@ def register_runtime(parser: settngs.Manager) -> None: parser.add_setting( "--skip-existing-tags", action=argparse.BooleanOptionalAction, - default=True, + default=False, help="""Skip archives that already have tags specified with -t,\notherwise merges new tags with existing tags (relevant for -s or -c).\ndefault: %(default)s""", file=False, )