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 19be354 commit 4613c5bCopy full SHA for 4613c5b
plugwise/helper.py
@@ -78,7 +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.error("XML data unexpectedly not found, processing stopped!")
+ LOGGER.error("XML data unexpectedly not present, processing stopped!")
82
raise XMLDataMissingError
83
84
@@ -87,7 +87,7 @@ def _findall(xml_in: etree, locator: str) -> list[etree]:
87
88
return xml_in.findall(locator)
89
90
91
92
93
0 commit comments