Plugins: yara python module check improvement

Fixes #616
This commit is contained in:
Mike Auty
2022-01-15 22:44:24 +00:00
parent a9e5589260
commit dab746aff0
+4 -1
View File
@@ -15,8 +15,11 @@ vollog = logging.getLogger(__name__)
try:
import yara
if tuple([int(x) for x in yara.__version__.split('.')]) < (3, 8):
raise ImportError
except ImportError:
vollog.info("Python Yara module not found, plugin (and dependent plugins) not available")
vollog.info("Python Yara (>3.8.0) module not found, plugin (and dependent plugins) not available")
raise