From d2836e07d5fef105d7234a144b7b52f87ef3f638 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Wed, 28 Sep 2022 22:18:54 +1000 Subject: [PATCH] Minor fix --- src/blenderbim/blenderbim/bim/module/classification/data.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blenderbim/blenderbim/bim/module/classification/data.py b/src/blenderbim/blenderbim/bim/module/classification/data.py index cb4a1c41db..5e04e3bf7c 100644 --- a/src/blenderbim/blenderbim/bim/module/classification/data.py +++ b/src/blenderbim/blenderbim/bim/module/classification/data.py @@ -51,7 +51,7 @@ class ClassificationsData: results = [] for element in tool.Ifc.get().by_type("IfcClassification"): data = element.get_info() - if IfcStore.classification_file.schema == "IFC2X3" and element.EditionDate: + if tool.Ifc.get().schema == "IFC2X3" and element.EditionDate: data["EditionDate"] = ifcopenshell.util.date.ifc2datetime(data["EditionDate"]) results.append(data) return results