From 51c6df00bd0a8c60e1dc8cedcf57c5ec5485bb14 Mon Sep 17 00:00:00 2001 From: Rudi Klein Date: Sun, 2 Jun 2024 15:26:19 +0200 Subject: [PATCH] Removed line of code, used for local testing. --- wazuh-notify-python/wazuh_notify_module.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/wazuh-notify-python/wazuh_notify_module.py b/wazuh-notify-python/wazuh_notify_module.py index f20b9da..8e7326a 100755 --- a/wazuh-notify-python/wazuh_notify_module.py +++ b/wazuh-notify-python/wazuh_notify_module.py @@ -22,8 +22,7 @@ from dotenv import load_dotenv # config_path = wazuh-notify-config.toml def set_environment() -> tuple: - set_wazuh_path = os.path.abspath(os.path.join(__file__, '../..')) - # set_wazuh_path = os.path.abspath(os.path.join(__file__, '../../..')) + set_wazuh_path = os.path.abspath(os.path.join(__file__, '../../..')) set_log_path = '{0}/logs/wazuh-notify.log'.format(set_wazuh_path) set_config_path = '{0}/etc/wazuh-notify-config.toml'.format(set_wazuh_path)