[utils] locked_file: Do not give executable bits for newly created files

Authored by: Lesmiscore
pull/3370/head
Lesmiscore 2 years ago
parent 4abea8ca0a
commit 98804d034d
No known key found for this signature in database
GPG Key ID: 0EC2B52CF86236FF

@ -2236,7 +2236,7 @@ class locked_file(object):
os.O_RDONLY if not writable else os.O_RDWR if readable else os.O_WRONLY,
))
self.f = os.fdopen(os.open(filename, flags), mode, encoding=encoding)
self.f = os.fdopen(os.open(filename, flags, 0o666), mode, encoding=encoding)
def __enter__(self):
exclusive = 'r' not in self.mode

Loading…
Cancel
Save