We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b803e41 commit 58efd74Copy full SHA for 58efd74
plugwise/helper.py
@@ -78,9 +78,7 @@ def _find(xml_in: etree, locator: str) -> etree:
78
if xml_in is not None:
79
return xml_in.find(locator)
80
81
- LOGGER.warning(
82
- "XML data unexpectedly not present, processing stopped. Please retry."
83
- )
+ LOGGER.error("XML data unexpectedly not present, processing stopped!")
84
raise XMLDataMissingError
85
86
@@ -89,9 +87,7 @@ def _findall(xml_in: etree, locator: str) -> list[etree]:
89
87
90
88
return xml_in.findall(locator)
91
92
93
94
95
96
97
0 commit comments