This commit is contained in:
Kovid Goyal 2023-05-13 06:10:44 +05:30
parent 9f3fa2a62d
commit 57794b179f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -47,6 +47,7 @@ class UnixFileCopier:
def delete_all_source_files(self) -> None: def delete_all_source_files(self) -> None:
for src_path in self.copy_map: for src_path in self.copy_map:
with suppress(FileNotFoundError):
os.unlink(src_path) os.unlink(src_path)