1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-12-26 00:38:10 +00:00

Fixes capture directory path.

This commit is contained in:
Jeremy 2015-02-18 18:40:01 -07:00
parent d65617657c
commit 380c4d8211

View File

@ -178,7 +178,7 @@ class Project:
:returns: working directory
"""
workdir = os.path.join(self._path, 'project-files', module_name)
workdir = os.path.join(self._path, "project-files", module_name)
try:
os.makedirs(workdir, exist_ok=True)
except OSError as e:
@ -194,7 +194,7 @@ class Project:
:returns: VM working directory
"""
workdir = os.path.join(self._path, 'project-files', vm.manager.module_name.lower(), vm.id)
workdir = os.path.join(self._path, "project-files", vm.manager.module_name.lower(), vm.id)
try:
os.makedirs(workdir, exist_ok=True)
except OSError as e:
@ -208,7 +208,7 @@ class Project:
:returns: path to the directory
"""
workdir = os.path.join(self._path, "captures")
workdir = os.path.join(self._path, "project-files", "captures")
try:
os.makedirs(workdir, exist_ok=True)
except OSError as e: