Determine absolut path for custom config folder

When a relative custom config path is passed via commandline, the logic
which decides if a plugin can be deleted from the plugin manager fails
This commit is contained in:
Philipp Hörist 2018-11-11 15:14:36 +01:00
parent 5981396ac4
commit 2c2943deff
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ def set_profile(profile: str) -> None:
def set_config_root(config_root: str) -> None:
_paths.custom_config_root = config_root
_paths.custom_config_root = str(Path(config_root).resolve())
def init() -> None: