fix: 修复导出名称的问题

This commit is contained in:
ViperEkura 2026-04-18 20:04:36 +08:00
parent 2723adf2d2
commit 01867ed9dc
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ def export_folders_to_zip(base_dir: str = ".", output_dir: str = "output"):
for folder in folders:
folder_path = os.path.join(base_dir, folder)
zip_filename = f"{folder}_{timestamp}.zip"
zip_filename = f"{folder}.zip"
zip_path = os.path.join(output_dir, zip_filename)
try: