From f1be078823327af0e01632f528dc199fa3ac262d Mon Sep 17 00:00:00 2001 From: Vincent Nguyen Date: Mon, 28 Oct 2024 11:29:49 +0100 Subject: [PATCH] [Fix] fix get_csv_separator() function for BoM class --- kibot/out_bom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kibot/out_bom.py b/kibot/out_bom.py index 969f9bf0..0f63d0e1 100644 --- a/kibot/out_bom.py +++ b/kibot/out_bom.py @@ -1005,7 +1005,7 @@ def __init__(self): self._category = 'Schematic/BoM' def get_csv_separator(self): - return self.csv.separator + return self.options.csv.separator @staticmethod def create_bom(fmt, subd, group_fields, join_fields, fld_names, cols=None):