From abda352a5b86a9a8e19c8a639267b2d620011140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 10 Sep 2020 22:15:51 +0200 Subject: [PATCH] add '--no-skip' command-line option (closes #986) --- gallery_dl/option.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gallery_dl/option.py b/gallery_dl/option.py index 50134478..2a48c874 100644 --- a/gallery_dl/option.py +++ b/gallery_dl/option.py @@ -224,6 +224,11 @@ def build_parser(): dest="part", nargs=0, action=ConfigConstAction, const=False, help="Do not use .part files", ) + downloader.add_argument( + "--no-skip", + dest="skip", nargs=0, action=ConfigConstAction, const=False, + help="Do not skip downloads; overwrite existing files", + ) downloader.add_argument( "--no-mtime", dest="mtime", nargs=0, action=ConfigConstAction, const=False,