From 5410f14aa169d121cc9bc74e690f6323b5d8d610 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Wed, 1 May 2024 18:03:17 +0500 Subject: [PATCH] ifc2sql - stringify psets list values #4599 --- src/ifcpatch/ifcpatch/recipes/Ifc2Sql.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ifcpatch/ifcpatch/recipes/Ifc2Sql.py b/src/ifcpatch/ifcpatch/recipes/Ifc2Sql.py index 1bf7b5b9ea..c1940ef5df 100644 --- a/src/ifcpatch/ifcpatch/recipes/Ifc2Sql.py +++ b/src/ifcpatch/ifcpatch/recipes/Ifc2Sql.py @@ -450,6 +450,8 @@ class Patcher: for prop_name, value in pset_data.items(): if prop_name == "id": continue + if isinstance(value, list): + value = repr(value) pset_rows.append([element.id(), pset_name, prop_name, value]) if self.should_get_geometry: