From 522d10f4224f11ccad17d0a9a198fa7c2f3ac02d Mon Sep 17 00:00:00 2001 From: Jan Date: Wed, 13 Nov 2024 11:05:52 +0100 Subject: [PATCH] Small file naming typo fixed --- slaeforms/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slaeforms/app.py b/slaeforms/app.py index a4bd12f..7d643c4 100644 --- a/slaeforms/app.py +++ b/slaeforms/app.py @@ -541,7 +541,7 @@ def export_all_videos(): with ZipFile('zip_exports/all_videos.zip', 'w') as zipf: #no compression, need to add zipfile.ZIP_DEFLATED for compression zipdir('uploads/', zipf) - return send_file("zip_exports/all_videos.zip", as_attachment=False, download_name="all_tables.zip") + return send_file("zip_exports/all_videos.zip", as_attachment=False, download_name="all_videos.zip") def create_csv(table, filename):