Merge branch 'dev' into bugfix/upload-flood

This commit is contained in:
Zedifus 2024-08-07 01:17:33 +01:00
commit 4155f359cc
2 changed files with 2 additions and 8 deletions

View File

@ -1,13 +1,7 @@
# Changelog # Changelog
## --- [4.4.2] - 2024/TBD ## --- [4.4.2] - 2024/TBD
### New features
TBD
### Bug fixes ### Bug fixes
TBD - Migrations | Fix exception message on file not found for backups migration ([Merge Request](https://gitlab.com/crafty-controller/crafty-4/-/merge_requests/789))
### Tweaks
TBD
### Lang
TBD
<br><br> <br><br>
## --- [4.4.1] - 2024/08/06 ## --- [4.4.1] - 2024/08/06

View File

@ -207,7 +207,7 @@ def migrate(migrator: Migrator, database, **kwargs):
) )
except FileNotFoundError as why: except FileNotFoundError as why:
logger.error( 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") Console.debug("Migrations: Dropping old backup table")