Allow for wildcard expansion in IFCCSV export

This commit is contained in:
Dion Moult
2020-07-18 17:29:32 +10:00
parent 41c539965c
commit 9d6e7c2481
2 changed files with 26 additions and 6 deletions
@@ -2815,7 +2815,7 @@ class ExportIfcCsv(bpy.types.Operator):
ifc_csv = ifccsv.IfcCsv()
ifc_csv.output = self.filepath
ifc_csv.attributes = [a.name for a in bpy.context.scene.BIMProperties.csv_attributes]
ifc_csv.export(ifc_selector_parser.results)
ifc_csv.export(ifc_selector_parser.file, ifc_selector_parser.results)
return {'FINISHED'}