From 3906168d622b431ed630af8fcc6872258d9302be Mon Sep 17 00:00:00 2001 From: McCloudS <64094529+McCloudS@users.noreply.github.com> Date: Wed, 1 May 2024 16:20:02 -0600 Subject: [PATCH] Clarify when an ASR task is running --- subgen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subgen.py b/subgen.py index 1899167..b945d4d 100644 --- a/subgen.py +++ b/subgen.py @@ -122,7 +122,7 @@ def transcription_worker(): while True: task = task_queue.get() if 'Bazarr-' in task['path']: - logging.info(f"Skipping processing for {task['path']} as it is handled by ASR.") + logging.info(f"{task['path']} is being handled handled by ASR.") else: gen_subtitles(task['path'], task['transcribe_or_translate'], task['force_language']) task_queue.task_done()