Skip to content
This repository was archived by the owner on Nov 24, 2024. It is now read-only.

Commit c094517

Browse files
c4rlosdiasMoult
authored andcommitted
Update operator.py
missing output file format in arguments
1 parent b61a11d commit c094517

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/blenderbim/blenderbim/bim/module/csv/operator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def execute(self, context):
152152
ifc_csv = ifccsv.IfcCsv()
153153
attributes = [a.name for a in props.csv_attributes]
154154
sep = props.csv_custom_delimiter if props.csv_delimiter == "CUSTOM" else props.csv_delimiter
155-
ifc_csv.export(ifc_file, results, attributes, output=self.filepath, format=args.format, delimiter=sep)
155+
ifc_csv.export(ifc_file, results, attributes, output=self.filepath, format="csv", delimiter=sep)
156156
return {"FINISHED"}
157157

158158

0 commit comments

Comments
 (0)