Do not return error if we can't remove the old project directory

pull/239/head
Julien Duponchelle 9 years ago
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…
Cancel
Save