This commit is contained in:
parent
9a269547f2
commit
9cd5f54e31
1 changed files with 6 additions and 0 deletions
|
@ -1837,6 +1837,12 @@ def write_json_file(obj, fn):
|
|||
os.unlink(fn)
|
||||
except OSError:
|
||||
pass
|
||||
try:
|
||||
mask = os.umask(0)
|
||||
os.umask(mask)
|
||||
os.chmod(tf.name, 0o666 & ~mask)
|
||||
except OSError:
|
||||
pass
|
||||
os.rename(tf.name, fn)
|
||||
except Exception:
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue