summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/borg/archiver/prune_cmd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/borg/archiver/prune_cmd.py b/src/borg/archiver/prune_cmd.py
index 30d4d428c..e8121993a 100644
--- a/src/borg/archiver/prune_cmd.py
+++ b/src/borg/archiver/prune_cmd.py
@@ -169,7 +169,7 @@ class PruneMixIn:
or (args.list_pruned and archive in to_delete)
or (args.list_kept and archive not in to_delete)
):
- list_logger.info(f"{log_message:<40} {formatter.format_item(archive, jsonline=False)}")
+ list_logger.info(f"{log_message:<44} {formatter.format_item(archive, jsonline=False)}")
pi.finish()
if sig_int:
# Ctrl-C / SIGINT: do not checkpoint (commit) again, we already have a checkpoint in this case.