From d6fd8f7b7b3e1ba21ae877c630cea7ece5bb7107 Mon Sep 17 00:00:00 2001 From: Phixxy Date: Wed, 4 Sep 2024 22:12:30 -0700 Subject: [PATCH] updated save path for text file --- 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 ffeb8e8..2edd8dc 100644 --- a/data/ytdl/youtubedl.py +++ b/data/ytdl/youtubedl.py @@ -45,7 +45,7 @@ def main(): zip_file = zip_all_files() output_url = upload_to_litterbox(zip_file) print(output_url) - with open(f"{time.time()}.txt", "w") as output_file: + with open(f"data/ytdl/{time.time()}.txt", "w") as output_file: output_file.write(output_url) output_file.close() else: