Reformat file with black

This commit is contained in:
deajan 2025-01-14 18:32:29 +01:00
parent 06d3438411
commit 4f06e2810f

View file

@ -230,7 +230,7 @@ def auto_upgrader(
f'echo "Moving upgraded dist from {upgrade_dist} to {CURRENT_DIR}" >> "{log_file}" 2>&1 && '
f'move /Y "{upgrade_dist}" "{CURRENT_DIR}" >> "{log_file}" 2>&1 && '
f'echo "Copying optional configuration files from {backup_dist} to {CURRENT_DIR}" >> "{log_file}" 2>&1 && '
fr'copy /Y "{backup_dist}\*.conf" {CURRENT_DIR} >> "{log_file}" 2>&1 & '
rf'copy /Y "{backup_dist}\*.conf" {CURRENT_DIR} >> "{log_file}" 2>&1 & '
f'echo "Loading new executable {CURRENT_EXECUTABLE} --version" >> "{log_file}" 2>&1 && '
f'"{CURRENT_EXECUTABLE}" --version >> "{log_file}" 2>&1 & '
f"IF %ERRORLEVEL% NEQ 0 ( "