mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-28 11:18:11 +00:00
Do not ignore error when closing a project
This commit is contained in:
parent
662c8788c2
commit
483370b756
@ -524,7 +524,7 @@ class Project:
|
||||
if self._status == "opened":
|
||||
yield from self.close()
|
||||
yield from self.delete_on_computes()
|
||||
shutil.rmtree(self.path, ignore_errors=True)
|
||||
shutil.rmtree(self.path)
|
||||
|
||||
@asyncio.coroutine
|
||||
def delete_on_computes(self):
|
||||
|
Loading…
Reference in New Issue
Block a user