Skip to content
Snippets Groups Projects
Commit d2757579 authored by Martin Bauer's avatar Martin Bauer
Browse files

Merge branch 'close-config-file-after-writing' into 'master'

Close pystencils' config file after writing

See merge request !51
parents ad26bd81 6298c72c
No related merge requests found
......@@ -173,7 +173,8 @@ def read_config():
config = recursive_dict_update(config, loaded_config)
else:
create_folder(config_path, True)
json.dump(config, open(config_path, 'w'), indent=4)
with open(config_path, 'w') as f:
json.dump(config, f, indent=4)
if config['cache']['object_cache'] is not False:
config['cache']['object_cache'] = os.path.expanduser(config['cache']['object_cache']).format(pid=os.getpid())
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment