Improved how the path to the config file is actually determined

pull/1691/head
JCDraaijer 5 years ago
parent 3bd394b637
commit 7117b1fb65

@ -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

Loading…
Cancel
Save