Fix issue when trying to export temporary Dynamips files.

This commit is contained in:
grossmj 2021-03-24 12:06:10 +10:30
parent fad52ea2fc
commit 055a78bade

View File

@ -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