You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I like to store settings in my home dir,
in cfg.py,json_file.py,toml_file.py,yaml_file.py with codecs.open(settings_file, 'r', 'utf-8') as f: failed when settings_file contains tidle
please change it to with codecs.open(os.path.expanduser(settings_file), 'r', 'utf-8') as f:
Thanks
The text was updated successfully, but these errors were encountered:
I like to store settings in my home dir,
in cfg.py,json_file.py,toml_file.py,yaml_file.py
with codecs.open(settings_file, 'r', 'utf-8') as f:
failed when settings_file contains tidleplease change it to
with codecs.open(os.path.expanduser(settings_file), 'r', 'utf-8') as f:
Thanks
The text was updated successfully, but these errors were encountered: