diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-11-05 23:34:55 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-11-05 23:34:55 +0100 |
| commit | a7529c979563e87fe9c518a3b6a084772d4b63a4 (patch) | |
| tree | 88445643552fcf1e761957cb634012cf4e0bc1a8 /util.py | |
| parent | 2cb40f0220c14cc4b42673b4b75fc04406f651ff (diff) | |
k
Diffstat (limited to 'util.py')
| -rw-r--r-- | util.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,12 +47,12 @@ def write_report(fn, title=None, keys=None, rows=[]): f.write("<head>") if title is not None: f.write("<title>{}</title>".format(title)) - f.write("<link rel='stylesheet' href='report.css'>") + f.write("<link rel='stylesheet' href='reports.css'>") f.write("</head>") f.write("<body>") if title is not None: f.write("<h2>{}</h2>".format(title)) - f.write("<table>") + f.write("<table border='1' cellpadding='3' cellspacing='3'>") if keys is not None: for key in keys: f.write("<th>{}</th>".format(key)) |
