From d17d937db12ddb80cf19046b2ddc2c8fbbbffc9e Mon Sep 17 00:00:00 2001 From: Kowalskiexe Date: Mon, 13 Oct 2025 19:51:18 +0200 Subject: [PATCH] remove extra slash --- pg_chameleon/lib/global_lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pg_chameleon/lib/global_lib.py b/pg_chameleon/lib/global_lib.py index b4c9a720..2a7d17dd 100644 --- a/pg_chameleon/lib/global_lib.py +++ b/pg_chameleon/lib/global_lib.py @@ -225,7 +225,7 @@ def load_config(self): """ The method loads the configuration from the file specified in the args.config parameter. """ - local_confdir = "%s/.pg_chameleon/configuration/" % os.path.expanduser('~') + local_confdir = "%s/.pg_chameleon/configuration" % os.path.expanduser('~') self.config_file = '%s/%s.yml'%(local_confdir, self.args.config) if not os.path.isfile(self.config_file):