mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-19 15:53:47 +00:00
Fix issue when trying to export temporary Dynamips files.
This commit is contained in:
@ -130,6 +130,10 @@ def _is_exportable(path, include_snapshots=False):
|
||||
:returns: True if file should not be included in the final archive
|
||||
"""
|
||||
|
||||
# do not export file that does not exist anymore
|
||||
if not os.path.exists(path):
|
||||
return False
|
||||
|
||||
# do not export snapshots by default
|
||||
if include_snapshots is False and path.endswith("snapshots"):
|
||||
return False
|
||||
|
Reference in New Issue
Block a user