mirror of
https://github.com/GNS3/gns3-server.git
synced 2024-12-21 21:57:49 +00:00
Catch FileNotFound error for builtin symbols if erase them from disk
Fix #752
This commit is contained in:
parent
c254011b33
commit
ce5ff93242
@ -49,7 +49,7 @@ class SymbolHandler:
|
|||||||
controller = Controller.instance()
|
controller = Controller.instance()
|
||||||
try:
|
try:
|
||||||
yield from response.file(controller.symbols.get_path(request.match_info["symbol_id"]))
|
yield from response.file(controller.symbols.get_path(request.match_info["symbol_id"]))
|
||||||
except KeyError:
|
except (KeyError, FileNotFoundError):
|
||||||
response.set_status(404)
|
response.set_status(404)
|
||||||
|
|
||||||
@Route.post(
|
@Route.post(
|
||||||
|
Loading…
Reference in New Issue
Block a user