mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-13 20:08:55 +00:00
Fixes error when ldd cannot be found.
This commit is contained in:
parent
f185c4d489
commit
cd47d96de7
@ -413,7 +413,7 @@ class IOUDevice(object):
|
||||
|
||||
try:
|
||||
output = subprocess.check_output(["ldd", self._path])
|
||||
except subprocess.SubprocessError as e:
|
||||
except (subprocess.SubprocessError, FileNotFoundError) as e:
|
||||
log.warn("could not determine the shared library dependencies for {}: {}".format(self._path, e))
|
||||
return
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user