diff options
| author | Glenn Smith <glenn@vector35.com> | 2026-02-25 18:25:46 -0500 |
|---|---|---|
| committer | Glenn Smith <glenn@vector35.com> | 2026-02-26 13:47:45 -0500 |
| commit | 9644957532200715212384234845909260023279 (patch) | |
| tree | 65608f39a1fcb4adbbd9934e77119d1a47abc116 /python | |
| parent | 8053519294751616998558811461876233782245 (diff) | |
Pass separator to qname ctor
Diffstat (limited to 'python')
| -rw-r--r-- | python/types.py | 2 |
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]: |
