shutil.copyfile -> shutil.copy

This commit is contained in:
Valentin Niess
2024-10-11 11:13:40 +02:00
parent bb2e178c2a
commit 223f35f757

View File

@@ -23,7 +23,7 @@ except ImportError:
or (os.path.getmtime(source) > os.path.getmtime(destination))
)
):
shutil.copyfile(source, destination)
shutil.copy(source, destination)
from .log import debug