mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-13 20:08:55 +00:00
parent
2acd6ce884
commit
9a7a9f41aa
@ -481,7 +481,10 @@ class BaseManager:
|
||||
:returns: Array of hash
|
||||
"""
|
||||
|
||||
return list_images(self._NODE_TYPE)
|
||||
try:
|
||||
return list_images(self._NODE_TYPE)
|
||||
except OSError as e:
|
||||
raise aiohttp.web.HTTPConflict(text="Can not list images {}".format(e))
|
||||
|
||||
def get_images_directory(self):
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user