add '--no-skip' command-line option (closes #986)

pull/997/head
Mike Fährmann 4 years ago
parent 5912727b88
commit abda352a5b
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -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,

Loading…
Cancel
Save