mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Hardcode mkdir mode
This commit is contained in:
parent
722665747e
commit
62a817fef3
1 changed files with 1 additions and 1 deletions
|
|
@ -106,7 +106,7 @@ def save_status(path, status_name, status):
|
|||
'user. If you think this is an error, please file '
|
||||
'a bug at {}'.format(base_path, PROJECT_HOME))
|
||||
if not os.path.exists(base_path):
|
||||
os.makedirs(base_path)
|
||||
os.makedirs(base_path, 0o750)
|
||||
|
||||
with open(full_path, 'w+') as f:
|
||||
for k, v in status.items():
|
||||
|
|
|
|||
Loading…
Reference in a new issue