From 23ecb248a5390a30f33a0a294fcc28835f3d5347 Mon Sep 17 00:00:00 2001 From: Aayush Goel <81844215+Aayush-Goel-04@users.noreply.github.com> Date: Tue, 10 Oct 2023 18:08:07 +0530 Subject: [PATCH] Update __init__.py --- capa/rules/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/capa/rules/__init__.py b/capa/rules/__init__.py index 1bc28eb7..46176fdc 100644 --- a/capa/rules/__init__.py +++ b/capa/rules/__init__.py @@ -209,7 +209,6 @@ def translate_com_feature(com_name: str, com_type: str) -> ceng.Or: CD = Path(__file__).resolve().parent.parent.parent com_db_path = CD / VALID_COM_TYPES[com_type]["db_path"] - logger.error(f"Path {CD} and {com_db_path} exits") if not com_db_path.exists(): logger.error("Using COM %s database '%s', but it doesn't exist", com_type, com_db_path) raise IOError(f"COM database path '{com_db_path}' does not exist or cannot be accessed")