1
0

fix: windows hates shutil.copy

This commit is contained in:
2025-08-04 14:59:55 +09:00
parent 26e49009ac
commit 59772371a7

View File

@@ -222,7 +222,7 @@ class Scraper(ClientSession):
# 임시로 받은 파일 옮기기
if not saved_path.exists():
shutil.copyfile(temp_file.name, saved_path)
shutil.copy2(temp_file.name, saved_path)
return attachment