From 217a93d3a47c68d5d4d11939ef6aef91f7548037 Mon Sep 17 00:00:00 2001 From: Phixxy Date: Wed, 4 Sep 2024 22:01:33 -0700 Subject: [PATCH] fixed paths --- data/ytdl/youtubedl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/ytdl/youtubedl.py b/data/ytdl/youtubedl.py index 208ad80..cbda8dc 100644 --- a/data/ytdl/youtubedl.py +++ b/data/ytdl/youtubedl.py @@ -23,7 +23,7 @@ def zip_all_files(): #zip all files current_epoch = time.time() output_file = f"{current_epoch}.zip" - os.system(f"zip -r {output_file} data/ytdl/*") + os.system(f"zip -r data/ytdl/{output_file} data/ytdl/*") return output_file def upload_to_litterbox(input_file):