From b4e46d22f047bbf560552eeed1e33457610c0d1f Mon Sep 17 00:00:00 2001 From: Ellison Patterson <3533001+ellisonpatterson@users.noreply.github.com> Date: Mon, 30 Oct 2023 15:01:16 -0400 Subject: [PATCH] Update subgen.py Fixed variable typo --- subgen/subgen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subgen/subgen.py b/subgen/subgen.py index 32f336e..fb4fbfd 100644 --- a/subgen/subgen.py +++ b/subgen/subgen.py @@ -338,7 +338,7 @@ def transcribe_existing(): for file in files: file_path = os.path.join(root, file) if is_video_file(file_path): - gen_subtitles(path_mapping(fullpath), transcribe_or_translate, False) + gen_subtitles(path_mapping(file_path), transcribe_or_translate, False) print("Finished searching and queueing files for transcription")