mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
repository: use os.replace instead of os.rename
On Windows, os.rename raises an exception if the destination file already exists, unlike os.replace which replaces the destination file. Docs: https://docs.python.org/3/library/os.html#os.rename https://docs.python.org/3/library/os.html#os.replace
This commit is contained in:
parent
5090f809ec
commit
62341673c1
1 changed files with 1 additions and 1 deletions
|
@ -636,7 +636,7 @@ def flush_and_sync(fd):
|
|||
os.fsync(fd.fileno())
|
||||
|
||||
def rename_tmp(file):
|
||||
os.rename(file + ".tmp", file)
|
||||
os.replace(file + ".tmp", file)
|
||||
|
||||
hints = {
|
||||
"version": 2,
|
||||
|
|
Loading…
Reference in a new issue