From 849242ecea0c109d198d3ba81a9f124468aae484 Mon Sep 17 00:00:00 2001 From: amcmanu3 Date: Tue, 6 Aug 2024 18:36:21 -0400 Subject: [PATCH 1/2] 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") From 885b629cc73c6f3b0625f59970a2bed15b2adcb9 Mon Sep 17 00:00:00 2001 From: Zedifus Date: Tue, 6 Aug 2024 23:54:16 +0100 Subject: [PATCH 2/2] Update changelog !789 --- CHANGELOG.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 080cd6f3..c8c4497c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,7 @@ # Changelog ## --- [4.4.2] - 2024/TBD -### New features -TBD ### Bug fixes -TBD -### Tweaks -TBD -### Lang -TBD +- Migrations | Fix exception message on file not found for backups migration ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/789))

## --- [4.4.1] - 2024/08/06