From 0108ff005a358cda6912d0437ccd62558ba5ed3d Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 24 Feb 2023 10:48:53 -0500 Subject: Fix python constructor of QualifiedNames and some of the operators on the C++ API --- python/types.py | 1 + 1 file changed, 1 insertion(+) (limited to 'python') diff --git a/python/types.py b/python/types.py index 0acbdf55..e9e50711 100644 --- a/python/types.py +++ b/python/types.py @@ -140,6 +140,7 @@ class QualifiedName: name_list[i] = self.name[i].encode("utf-8") result.name = name_list result.nameCount = len(self.name) + result.join = "::".encode("utf-8") return result @staticmethod -- cgit v1.3.1