diff --git a/ui/sd_internal/task_manager.py b/ui/sd_internal/task_manager.py index 6228ef20..3548b0a8 100644 --- a/ui/sd_internal/task_manager.py +++ b/ui/sd_internal/task_manager.py @@ -219,7 +219,7 @@ def thread_get_next_task(): try: # Select a render task. for queued_task in tasks_queue: if queued_task.request.use_face_correction and runtime.thread_data.device == 'cpu' and is_alive() == 1: - queued_task.error = Exception('The CPU cannot be used to run this task currently. Please remove "Correct incorrect faces" from Image Settings and try again.') + queued_task.error = Exception('The CPU cannot be used to run this task currently. Please remove "Fix incorrect faces" from Image Settings and try again.') task = queued_task break if queued_task.render_device and runtime.thread_data.device != queued_task.render_device: