mirror of
https://github.com/GNS3/gns3-server
synced 2024-12-02 21:28:10 +00:00
parent
9b6b989d1b
commit
40263e14ca
@ -49,6 +49,9 @@ def export_project(project, temporary_dir, include_images=False, keep_compute_id
|
|||||||
|
|
||||||
z = zipstream.ZipFile(allowZip64=True)
|
z = zipstream.ZipFile(allowZip64=True)
|
||||||
|
|
||||||
|
if not os.path.exists(project._path):
|
||||||
|
raise aiohttp.web.HTTPNotFound(text="The project doesn't exist at location {}".format(project._path))
|
||||||
|
|
||||||
# First we process the .gns3 in order to be sure we don't have an error
|
# First we process the .gns3 in order to be sure we don't have an error
|
||||||
for file in os.listdir(project._path):
|
for file in os.listdir(project._path):
|
||||||
if file.endswith(".gns3"):
|
if file.endswith(".gns3"):
|
||||||
|
Loading…
Reference in New Issue
Block a user