diff options
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]: |
