Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gajim/common/configpaths.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gajim/common/configpaths.py b/gajim/common/configpaths.py
index 1bb3bbac6..b55a59185 100644
--- a/gajim/common/configpaths.py
+++ b/gajim/common/configpaths.py
@@ -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: