1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 03:08:14 +00:00

Merge pull request #1691 from JCDraaijer/master

Added workaround for #1690
This commit is contained in:
Jeremy Grossmann 2019-11-11 18:36:34 +08:00 committed by GitHub
commit 5e4e5c741b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

1
.gitignore vendored
View File

@ -58,4 +58,5 @@ startup.vpcs
# Virtualenv
env
venv
.ropeproject

View File

@ -45,6 +45,9 @@ class Config:
self._files = files
self._profile = profile
if files and len(files):
directory_name = os.path.dirname(files[0])
if not directory_name or directory_name == "":
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