changed log message reserved length (42 -> 44)

This commit is contained in:
Vladimir Malinovskii 2024-04-06 18:03:38 +03:00
parent 2e46cde178
commit e3f1349a7f
1 changed files with 1 additions and 1 deletions

View File

@ -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:<42} {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.