From 73dd4b154915bdf8d3095568f4514efe160e874b Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Tue, 28 Feb 2023 09:59:51 +0100 Subject: [PATCH] more logs --- dotdrop/options.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dotdrop/options.py b/dotdrop/options.py index 76cd7ee..2ea8231 100644 --- a/dotdrop/options.py +++ b/dotdrop/options.py @@ -157,6 +157,8 @@ class Options(AttrMonitor): # selected profile self.profile = self.args['--profile'] self.confpath = self._get_config_path() + self.confpath = os.path.abspath(self.confpath) + self.log.dbg(f'config abs path: {self.confpath}') if not self.confpath: raise YamlException('no config file found') if not os.path.exists(self.confpath):