In the export rename the .gns3 to project.gns3

This commit is contained in:
Julien Duponchelle
2016-03-30 17:56:55 +02:00
parent bd71f0cf4c
commit 3b04f556b3
2 changed files with 12 additions and 1 deletions

View File

@ -534,5 +534,9 @@ class Project:
for file in files:
path = os.path.join(root, file)
z.write(path, os.path.relpath(path, self._path))
# We rename the .gns3 project.gns3 to avoid the task to the client to guess the file name
if file.endswith(".gns3"):
z.write(path, "project.gns3")
else:
z.write(path, os.path.relpath(path, self._path))
return z