Commit c7f12545 authored by Jan Kiene's avatar Jan Kiene
Browse files

fix wrong argument name

parent 1b667444
Loading
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -73,17 +73,17 @@ def html_table_from_csv_file(csv_path, html_path):
        reader = csv.DictReader(csv_file, delimiter=";")

        with open(html_path, "w") as html:
            print("<table>", f=html)
            print("<table>", file=html)
            header_row = "".join(
                [TABLE_HEADER_CELL.format(x for x in reader.fieldnames)]
            )
            print(header_row, f=html)
            print(header_row, file=html)
            for csv_row in reader:
                html_row = TABLE_ROW.format(
                    "".join([TABLE_CELL.format(x for x in csv_row)])
                )
                print(html_row, f=html)
            print("</table>", f=html)
                print(html_row, ffile=html)
            print("</table>", file=html)


def get_artifacts_for_jobs_and_return_num_failed(