fixed paths

This commit is contained in:
Phixxy 2024-09-04 22:01:33 -07:00
parent 3fb59cdff7
commit 217a93d3a4

View file

@ -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):