diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2020-03-10 14:12:40 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2020-03-10 14:13:58 +0100 |
| commit | 05c4ff22bcf3f5944793d7a5e89e7237d2bf02c2 (patch) | |
| tree | f9c5d63b8d1a66e20b13e55dbbce78786469e1da /src/plots.py | |
| parent | 75b23482330948e84b9893a51501c5e27ee8d3c5 (diff) | |
| download | allocbench-05c4ff22bcf3f5944793d7a5e89e7237d2bf02c2.tar.gz allocbench-05c4ff22bcf3f5944793d7a5e89e7237d2bf02c2.zip | |
make sure we join only strings
Diffstat (limited to 'src/plots.py')
| -rw-r--r-- | src/plots.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plots.py b/src/plots.py index bf52a74..a22a201 100644 --- a/src/plots.py +++ b/src/plots.py @@ -412,7 +412,7 @@ def write_best_doublearg_tex_table(bench, cell_text.append(" & ".join(row)) table_layout = " l |" * len(headers) - header_line = " & ".join(headers) + header_line = " & ".join([str(x) for x in headers]) cell_text = "\\\\\n".join(cell_text) tex =\ |
