From 6a7f490a7717f7172dfa4986bf27b36c2866be84 Mon Sep 17 00:00:00 2001 From: Gokul Mohanarangan Date: Wed, 12 Jul 2023 10:30:16 +0530 Subject: [PATCH] fix S3 upload bug --- whisjax.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whisjax.py b/whisjax.py index c8c2a359..a9964f7d 100644 --- a/whisjax.py +++ b/whisjax.py @@ -175,7 +175,7 @@ def main(): logger.info("Summarization completed") # Summarization takes a lot of time, so do this separately at the end - files_to_upload = ["summary_" + suffix + ".txt"] + files_to_upload = [prefix + "summary_" + suffix + ".txt"] upload_files(files_to_upload)