luizribeiro/mariner

The settings in ~/.mariner/config.toml file are ignored

al37919 opened this issue · 0 comments

Path("~/.mariner/config.toml")

in config.py is handled incorrectly. So, the settings in ~/.mariner/config.toml file are ignored.

For explanation see:
https://stackoverflow.com/questions/2057045/os-makedirs-doesnt-understand-in-my-path

Possible solution --- replace:

Path("~/.mariner/config.toml")

with

Path(os.path.expanduser("~/.mariner/config.toml"))

  • Mariner Version: [latest github version]