1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-03-04 02:28:34 +00:00

prune: fix --stats --iec output to use binary units, see #6606

This commit is contained in:
Thomas Waldmann 2022-04-19 21:51:55 +02:00
parent 0ddb1fa194
commit cc04253afd

View file

@ -1538,8 +1538,8 @@ class Archiver:
keep += prune_split(archives, rule, num, kept_because)
to_delete = (set(archives) | checkpoints) - (set(keep) | set(keep_checkpoints))
stats = Statistics()
with Cache(repository, key, manifest, lock_wait=self.lock_wait) as cache:
stats = Statistics(iec=args.iec)
with Cache(repository, key, manifest, lock_wait=self.lock_wait, iec=args.iec) as cache:
list_logger = logging.getLogger('borg.output.list')
# set up counters for the progress display
to_delete_len = len(to_delete)