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:
authorPhilipp Hörist <philipp@hoerist.com>2018-11-11 17:14:36 +0300
committerPhilipp Hörist <philipp@hoerist.com>2018-11-13 23:56:21 +0300
commit2c2943deff8b9e5abf61371244395640a6df97e1 (patch)
tree2e64028923eb4cb5adbf2e5d55c937c9840463bc
parent5981396ac4186698ce535f7a6d953147845c4103 (diff)
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
-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: