Loading ci/basop-pages/create_report_pages.py +2 −2 Original line number Diff line number Diff line Loading @@ -5,7 +5,7 @@ from functools import partial FORMATS = ["Stereo", "ISM", "Multichannel", "MASA", "SBA", "OSBA", "OMASA", "Renderer"] CSV_DELIM = ";" CSV_DELIM = "," SUBPAGE_TMPL_CSS = """ <style type="text/css"> .tbase {border-collapse:collapse;border-spacing:0;} Loading Loading @@ -158,7 +158,7 @@ def create_subpage( def write_out_csv(data, col_names, outfile): with open(outfile, "w") as f: writer = csv.DictWriter(f, col_names, delimiter=";") writer = csv.DictWriter(f, col_names, delimiter=CSV_DELIM) writer.writeheader() for row in data: writer.writerow(row) Loading Loading
ci/basop-pages/create_report_pages.py +2 −2 Original line number Diff line number Diff line Loading @@ -5,7 +5,7 @@ from functools import partial FORMATS = ["Stereo", "ISM", "Multichannel", "MASA", "SBA", "OSBA", "OMASA", "Renderer"] CSV_DELIM = ";" CSV_DELIM = "," SUBPAGE_TMPL_CSS = """ <style type="text/css"> .tbase {border-collapse:collapse;border-spacing:0;} Loading Loading @@ -158,7 +158,7 @@ def create_subpage( def write_out_csv(data, col_names, outfile): with open(outfile, "w") as f: writer = csv.DictWriter(f, col_names, delimiter=";") writer = csv.DictWriter(f, col_names, delimiter=CSV_DELIM) writer.writeheader() for row in data: writer.writerow(row) Loading