1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Allow to delete a non opened project

This commit is contained in:
Julien Duponchelle 2016-08-16 13:30:10 +02:00
parent 0613efa297
commit 017202d151
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -514,9 +514,9 @@ class Project:
except OSError as e:
log.warning(str(e))
@open_required
@asyncio.coroutine
def delete(self):
if self._status == "opened":
yield from self.close()
yield from self.delete_on_computes()
shutil.rmtree(self.path, ignore_errors=True)