fix: Catch exception when liblua-5.3 is not present

Related: https://github.com/MISP/misp-modules/issues/398
pull/580/head
Raphaël Vinot 2020-05-12 13:21:03 +02:00
parent 35257e538d
commit 5df58406ef
1 changed files with 3 additions and 0 deletions

View File

@ -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