mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-01-18 07:23:47 +02:00
parent
5c8193556d
commit
688122c467
@ -304,7 +304,8 @@ class ProjectHandler:
|
|||||||
|
|
||||||
yield from response.write_eof()
|
yield from response.write_eof()
|
||||||
# Will be raise if you have no space left or permission issue on your temporary directory
|
# Will be raise if you have no space left or permission issue on your temporary directory
|
||||||
except OSError as e:
|
# RuntimeError: something was wrong during the zip process
|
||||||
|
except (OSError, RuntimeError) as e:
|
||||||
raise aiohttp.web.HTTPNotFound(text="Can't export project: {}".format(str(e)))
|
raise aiohttp.web.HTTPNotFound(text="Can't export project: {}".format(str(e)))
|
||||||
|
|
||||||
@Route.post(
|
@Route.post(
|
||||||
|
Loading…
Reference in New Issue
Block a user