mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-13 20:08:55 +00:00
Merge branch 'master' into 2.2
This commit is contained in:
commit
4daaea9cec
1
.gitignore
vendored
1
.gitignore
vendored
@ -58,4 +58,5 @@ startup.vpcs
|
||||
|
||||
# Virtualenv
|
||||
env
|
||||
venv
|
||||
.ropeproject
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user