Commit c16b4f9c authored by olivier R-D's avatar olivier R-D

null string instead of string of 0 length for null QualifiedName

parent 33dd4565
......@@ -642,7 +642,7 @@ class QualifiedName(FrozenClass):
A string qualified with a namespace index.
'''
def __init__(self, name="", namespaceidx=0):
def __init__(self, name=None, namespaceidx=0):
if not isinstance(namespaceidx, int):
raise UaError("namespaceidx must be an int")
self.NamespaceIndex = namespaceidx
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment