mirror of https://github.com/MISP/PyMISP
fix: Catch exception when liblua-5.3 is not present
Related: https://github.com/MISP/misp-modules/issues/398pull/580/head
parent
35257e538d
commit
5df58406ef
|
@ -21,6 +21,9 @@ try:
|
|||
except ImportError:
|
||||
# Requires faup, which is a bit difficult to install
|
||||
pass
|
||||
except OSError:
|
||||
# faup requires liblua-5.3
|
||||
pass
|
||||
|
||||
try:
|
||||
from .peobject import PEObject, PESectionObject # noqa
|
||||
|
|
Loading…
Reference in New Issue