From 54aec046a6a919ee9622ddd1c11d48274ed8bafc Mon Sep 17 00:00:00 2001 From: Anish Moorthy Date: Sun, 7 Dec 2025 15:57:55 -0800 Subject: [PATCH] Log backup status using newline --- management/status_checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/management/status_checks.py b/management/status_checks.py index 0cc32bad..0877107c 100755 --- a/management/status_checks.py +++ b/management/status_checks.py @@ -278,7 +278,7 @@ def check_backup(rounded_values, env, output): try: backup_stat = backup_status(env) except Exception as e: - output.print_error(f"Failed to obtain backup status: {e}") + output.print_error(f"Failed to obtain backup status:\n{e}") return backups = backup_stat.get("backups", {})