From 570db6ace4dbc18d61ff4ea5f830da7247cca8e4 Mon Sep 17 00:00:00 2001 From: sgoral-splunk <138458044+sgoral-splunk@users.noreply.github.com> Date: Wed, 3 Jan 2024 10:21:26 +0100 Subject: [PATCH] chore: error msg refactor Co-authored-by: Artem Rys --- splunk_add_on_ucc_framework/dashboard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splunk_add_on_ucc_framework/dashboard.py b/splunk_add_on_ucc_framework/dashboard.py index ca50a2cd5..a9079caa7 100644 --- a/splunk_add_on_ucc_framework/dashboard.py +++ b/splunk_add_on_ucc_framework/dashboard.py @@ -164,7 +164,7 @@ def get_custom_xml_content(xml_path: str) -> str: root = custom_xml.getroot() if root.tag != "custom-dashboard": logger.error( - f"File {xml_path} has invalid root tag '{root.tag}'." + f"File {xml_path} has invalid root tag '{root.tag}'. " f"Valid root tag is 'custom-dashboard'" ) sys.exit(1)