diff --git a/facefusion/exit_helper.py b/facefusion/exit_helper.py index cdf66cca..1486f1ed 100644 --- a/facefusion/exit_helper.py +++ b/facefusion/exit_helper.py @@ -28,7 +28,7 @@ def graceful_exit(error_code : ErrorCode) -> None: while process_manager.is_processing(): sleep(0.5) - if state_manager.get_item('target_path'): - clear_temp_directory(state_manager.get_item('target_path')) + if state_manager.get_item('output_path'): + clear_temp_directory(state_manager.get_item('output_path')) hard_exit(error_code)