diff options
-rw-r--r-- | lib/python/milc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/milc.py b/lib/python/milc.py index 36072ca76..949bb0252 100644 --- a/lib/python/milc.py +++ b/lib/python/milc.py | |||
@@ -571,7 +571,7 @@ class MILC(object): | |||
571 | 571 | ||
572 | # Move the new config file into place atomically | 572 | # Move the new config file into place atomically |
573 | if os.path.getsize(tmpfile.name) > 0: | 573 | if os.path.getsize(tmpfile.name) > 0: |
574 | os.rename(tmpfile.name, str(self.config_file)) | 574 | os.replace(tmpfile.name, str(self.config_file)) |
575 | else: | 575 | else: |
576 | self.log.warning('Config file saving failed, not replacing %s with %s.', str(self.config_file), tmpfile.name) | 576 | self.log.warning('Config file saving failed, not replacing %s with %s.', str(self.config_file), tmpfile.name) |
577 | 577 | ||