1
0
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:
Julien Duponchelle 2016-08-31 17:24:19 +02:00
parent 662c8788c2
commit 483370b756
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

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