mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-05 23:59:09 +00:00
Do not return error if we can't remove the old project directory
This commit is contained in:
parent
d31420b3e1
commit
528bb7a7c6
@ -152,7 +152,7 @@ class Project:
|
||||
try:
|
||||
shutil.rmtree(old_path)
|
||||
except OSError as e:
|
||||
raise aiohttp.web.HTTPConflict(text="Can't remove temporary directory {}: {}".format(old_path, e))
|
||||
log.warn("Can't remove temporary directory {}: {}".format(old_path, e))
|
||||
|
||||
@property
|
||||
def name(self):
|
||||
|
Loading…
Reference in New Issue
Block a user