mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-01-18 15:33:49 +02: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