From fea80315ef144f87ba9a9967a020f7fba9bd2fb5 Mon Sep 17 00:00:00 2001 From: Chevallier Date: Mon, 19 Jan 2026 14:17:53 +0100 Subject: [PATCH] correction Equipement Stormshield --- Parseurs_config_Firewall/src/scripts/json_Stormshield.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Parseurs_config_Firewall/src/scripts/json_Stormshield.py b/Parseurs_config_Firewall/src/scripts/json_Stormshield.py index 347274e..ba43f08 100644 --- a/Parseurs_config_Firewall/src/scripts/json_Stormshield.py +++ b/Parseurs_config_Firewall/src/scripts/json_Stormshield.py @@ -397,7 +397,7 @@ class StormshieldParser(ParserMixin): with open(path, "r", encoding="utf-8", errors="ignore") as f: for line in f: line = line.strip() - if line.startswith("Name="): + if line.startswith("Address="): fw_name = line.split("=", 1)[1].strip() break return fw_name