fix: Correct logging message formatting in get_bucket_stats and update test assertionsalls for clarity.

This commit is contained in:
Simone Scarduzio
2025-10-11 14:05:54 +02:00
parent 35d34d4862
commit f75db142e8
2 changed files with 7 additions and 7 deletions

View File

@@ -256,7 +256,7 @@ def get_bucket_stats(
path = f"{deltaspace}/reference.bin" if deltaspace else "reference.bin"
client.service.logger.warning(f" - s3://{bucket}/{path} ({size:,} bytes)")
client.service.logger.warning(f"\nConsider removing these orphaned files:\n")
client.service.logger.warning("\nConsider removing these orphaned files:\n")
for deltaspace in reference_files:
path = f"{deltaspace}/reference.bin" if deltaspace else "reference.bin"
client.service.logger.warning(f" aws s3 rm s3://{bucket}/{path}")