Merge branch 'main' into dev

This commit is contained in:
JackDandy 2024-10-07 01:01:05 +01:00
commit c05ccd3b51

View file

@ -2479,11 +2479,11 @@ def _save_config(force=False, **kwargs):
for _t in range(0, 3): for _t in range(0, 3):
copy_file(CONFIG_FILE, backup_config) copy_file(CONFIG_FILE, backup_config)
if not check_valid_config(backup_config): if not check_valid_config(backup_config):
if 2 > _t: if 2 > _t:
logger.debug('backup config file seems to be invalid, retrying...') logger.debug('backup config file seems to be invalid, retrying...')
else: else:
logger.warning('backup config file seems to be invalid, not backing up.') logger.warning('backup config file seems to be invalid, not backing up.')
backup_config = None backup_config = None
remove_file_perm(backup_config) remove_file_perm(backup_config)
2 > _t and time.sleep(3) 2 > _t and time.sleep(3)
else: else: