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 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")