1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-12 07:08:47 +00:00

Merge pull request #6919 from ThomasWaldmann/fix-delete-master

delete: remove unused option --keep-security-info
This commit is contained in:
TW 2022-08-01 15:12:06 +02:00 committed by GitHub
commit 1744c92967
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -162,12 +162,6 @@ class DeleteMixIn:
default=0, default=0,
help="force deletion of corrupted archives, " "use ``--force --force`` in case ``--force`` does not work.", help="force deletion of corrupted archives, " "use ``--force --force`` in case ``--force`` does not work.",
) )
subparser.add_argument(
"--keep-security-info",
dest="keep_security_info",
action="store_true",
help="keep the local security info when deleting a repository",
)
subparser.add_argument( subparser.add_argument(
"--save-space", dest="save_space", action="store_true", help="work slower, but using less space" "--save-space", dest="save_space", action="store_true", help="work slower, but using less space"
) )