Skip to content

Commit 9644957

Browse files
committed
Pass separator to qname ctor
1 parent 8053519 commit 9644957

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/types.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def _from_core_struct(name):
172172
result = []
173173
for i in range(0, name.nameCount):
174174
result.append(name.name[i].decode("utf-8"))
175-
return QualifiedName(result)
175+
return QualifiedName(result, name.join.decode("utf-8"))
176176

177177
@property
178178
def name(self) -> List[str]:

0 commit comments

Comments
 (0)