From 281a7f0d233a751571f240de6189600bd166c69b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Tue, 26 Jan 2021 13:13:59 +0100 Subject: [PATCH] chg: Remove critical warning if lief is not installed Fix https://github.com/MISP/MISP/issues/6908 --- pymisp/tools/create_misp_object.py | 1 - 1 file changed, 1 deletion(-) diff --git a/pymisp/tools/create_misp_object.py b/pymisp/tools/create_misp_object.py index d3204ca..b4d36ce 100644 --- a/pymisp/tools/create_misp_object.py +++ b/pymisp/tools/create_misp_object.py @@ -25,7 +25,6 @@ except AttributeError: except ImportError: HAS_LIEF = False - logger.critical('You need lief >= 0.11.0. The quick and dirty fix is: pip3 install --force pymisp[fileobjects]') class FileTypeNotImplemented(MISPObjectException):