mirror of
https://github.com/GNS3/gns3-server
synced 2025-05-29 04:08:50 +00:00
parent
2acd6ce884
commit
9a7a9f41aa
@ -481,7 +481,10 @@ class BaseManager:
|
|||||||
:returns: Array of hash
|
: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):
|
def get_images_directory(self):
|
||||||
"""
|
"""
|
||||||
|
Loading…
Reference in New Issue
Block a user