From 849242ecea0c109d198d3ba81a9f124468aae484 Mon Sep 17 00:00:00 2001 From: amcmanu3 Date: Tue, 6 Aug 2024 18:36:21 -0400 Subject: [PATCH] Fix exception message on file not found for backups --- app/migrations/20240308_multi-backup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/migrations/20240308_multi-backup.py b/app/migrations/20240308_multi-backup.py index ec46286e..56e01a5c 100644 --- a/app/migrations/20240308_multi-backup.py +++ b/app/migrations/20240308_multi-backup.py @@ -207,7 +207,7 @@ def migrate(migrator: Migrator, database, **kwargs): ) except FileNotFoundError as why: logger.error( - f"Could not move backup {file} for {server.server_name} to new location with error {why}" + f"Could not move backups for {server.server_name} to new location with error {why}" ) Console.debug("Migrations: Dropping old backup table")