Skip to content

Commit

Permalink
changed insufficiently reserved length for log message (#8152)
Browse files Browse the repository at this point in the history
changed log message reserved length
  • Loading branch information
galqiwi committed Apr 6, 2024
1 parent 411c763 commit 0c1df41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/borg/archiver/prune_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def checkpoint_func():
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.
Expand Down

0 comments on commit 0c1df41

Please sign in to comment.