From e2747e095f332bf429b44a527ec8de299a6e440a Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Wed, 23 Jan 2019 22:19:12 +1100 Subject: [PATCH] Fix incorrect directory for location of json file --- src/Mod/Arch/ArchComponent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Arch/ArchComponent.py b/src/Mod/Arch/ArchComponent.py index 066509a046..183ce39b82 100644 --- a/src/Mod/Arch/ArchComponent.py +++ b/src/Mod/Arch/ArchComponent.py @@ -57,7 +57,7 @@ else: # This module provides the base Arch component class, that # is shared by all of the Arch BIM objects -with open(FreeCAD.ConfigGet("AppHomePath") + "Mod/Arch/Presets/ifc_products.json") as f: +with open(FreeCAD.ConfigGet("AppHomePath") + "data/Mod/Arch/Presets/ifc_products.json") as f: IfcProducts = json.load(f) # Possible roles for FreeCAD BIM objects