Fix #976. Bug where project data dir was not very customisable without running into issues.

This commit is contained in:
Dion Moult
2021-05-28 15:58:19 +10:00
parent a24d683613
commit 478612b6ae
10 changed files with 39 additions and 24 deletions
@@ -9,7 +9,7 @@ class Usecase:
self.settings[key] = value
def execute(self):
data = {"Name": self.settings["Name"]}
data = {"Name": self.settings["name"]}
if self.file.schema == "IFC2X3":
data["Id"] = self.settings["identification"]
else: