From 7117b1fb653953b4dfdd57d793400cf081b5d641 Mon Sep 17 00:00:00 2001 From: JCDraaijer Date: Mon, 11 Nov 2019 11:20:51 +0100 Subject: [PATCH] Improved how the path to the config file is actually determined --- gns3server/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gns3server/config.py b/gns3server/config.py index dc2fb80c..d0e592ea 100644 --- a/gns3server/config.py +++ b/gns3server/config.py @@ -47,7 +47,7 @@ class Config: if files and len(files): directory_name = os.path.dirname(files[0]) if not directory_name or directory_name == "": - files[0] = './' + files[0] + files[0] = os.path.dirname(os.path.abspath(files[0])) + os.path.sep + files[0] self._main_config_file = files[0] else: self._main_config_file = None