Skip to content

Commit

Permalink
Fixed bug where --no-backup was not turning off backups
Browse files Browse the repository at this point in the history
  • Loading branch information
jjjake committed Dec 10, 2024
1 parent 4c8327e commit 7ad62b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internetarchive/cli/ia_delete.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def setup(subparsers):
default=2,
help="Number of retries on S3 503 SlowDown error.")
parser.add_argument("--no-backup",
action="store_false",
action="store_true",
help="Turn off archive.org backups. Clobbered files will not be saved.")

parser.set_defaults(func=lambda args: main(args, parser))
Expand Down

0 comments on commit 7ad62b1

Please sign in to comment.