summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2026-02-25 18:25:46 -0500
committerGlenn Smith <glenn@vector35.com>2026-02-26 13:47:45 -0500
commit9644957532200715212384234845909260023279 (patch)
tree65608f39a1fcb4adbbd9934e77119d1a47abc116 /python
parent8053519294751616998558811461876233782245 (diff)
Pass separator to qname ctor
Diffstat (limited to 'python')
-rw-r--r--python/types.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/types.py b/python/types.py
index 3d09d6e8..c604802f 100644
--- a/python/types.py
+++ b/python/types.py
@@ -172,7 +172,7 @@ class QualifiedName:
result = []
for i in range(0, name.nameCount):
result.append(name.name[i].decode("utf-8"))
- return QualifiedName(result)
+ return QualifiedName(result, name.join.decode("utf-8"))
@property
def name(self) -> List[str]: