diff --git a/kiplot/bom/bom_writer.py b/kiplot/bom/bom_writer.py index cca8dfb2..f583f1fc 100644 --- a/kiplot/bom/bom_writer.py +++ b/kiplot/bom/bom_writer.py @@ -29,6 +29,7 @@ def write_bom(filename, ext, groups, headings, cfg): """ # Allow renaming the columns head_names = [h if h.lower() not in cfg.column_rename else cfg.column_rename[h.lower()] for h in headings] + headings = [h.lower() for h in headings] result = False # CSV file writing if ext in ["csv", "tsv", "txt"]: