From ab2e6cbe58f9f9eecbe9a179b5cda7c18a1391c5 Mon Sep 17 00:00:00 2001 From: knj Date: Wed, 24 Jan 2024 16:15:35 +0100 Subject: [PATCH] change default MLD value in otuput csv to None --- scripts/parse_mld_xml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/parse_mld_xml.py b/scripts/parse_mld_xml.py index bbc47754ca..34371deabc 100644 --- a/scripts/parse_mld_xml.py +++ b/scripts/parse_mld_xml.py @@ -27,7 +27,7 @@ if __name__ == '__main__': for testcase in testcases: fulltestname = testcase.get('file') + "::" + testcase.get('name') system_out = testcase.find(".//system-out") - mld_val = 0 + mld_val = None if system_out is not None: for line in system_out.text.split('\n'): if line.startswith('MLD:'): -- GitLab