Skip to content

Commit 6c2020d

Browse files
markusgraubeoroulet
authored andcommitted
Fix typo (#400)
* Fix typo * Replace print by logger.warn
1 parent 5522215 commit 6c2020d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

opcua/common/xmlparser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ def _parse_ext_obj(self, el):
304304
ext.objname = self._retag.match(extension_object_part.find('*').tag).groups()[1]
305305
ext.body = self._parse_body(extension_object_part)
306306
else:
307-
print("Uknown ndtag", ntag)
307+
self.logger.warning("Unknown ntag", ntag)
308308
return ext
309309

310310
def _parse_body(self, el):

0 commit comments

Comments
 (0)