Browse Source

follow up 6fb974227b

sqlite_db
ThomasV 6 years ago
parent
commit
58c2c15266
  1. 2
      electrum/storage.py

2
electrum/storage.py

@ -137,6 +137,8 @@ class JsonDB(PrintError):
os.fsync(f.fileno())
mode = os.stat(self.path).st_mode if self.file_exists() else stat.S_IREAD | stat.S_IWRITE
if not file_exists():
assert not os.path.exists(self.path)
os.replace(temp_path, self.path)
os.chmod(self.path, mode)
self._file_exists = True

Loading…
Cancel
Save