From 82ada5c102888381d4d6f8ed4475af2274e3e7c8 Mon Sep 17 00:00:00 2001 From: Jesusbill Date: Mon, 1 Jun 2020 01:41:20 +0200 Subject: [PATCH] minor fix in ifc2ca (revert a bad modification :|) --- src/ifc2ca/ifc2ca.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifc2ca/ifc2ca.py b/src/ifc2ca/ifc2ca.py index ef9cef2888..76501bf1a1 100644 --- a/src/ifc2ca/ifc2ca.py +++ b/src/ifc2ca/ifc2ca.py @@ -166,7 +166,7 @@ class IFC2CA: 'geometry': geometry, 'orientation': orientation, 'appliedCondition': self.get_connection_input(item), - 'relatedElements': [con.is_a() + '|' + str(con.id()) for con in con.ConnectsStructuralMembers] + 'relatedElements': [con.is_a() + '|' + str(con.id()) for con in item.ConnectsStructuralMembers] } def get_transformation(self, placement):