diff --git a/wa/processors/csvproc.py b/wa/processors/csvproc.py index 8e9f68ea..e1824e2d 100644 --- a/wa/processors/csvproc.py +++ b/wa/processors/csvproc.py @@ -81,7 +81,7 @@ class CsvReportProcessor(ResultProcessor): header = [o.id, o.label, o.iteration] for metric in o.result.metrics: row = (header + [metric.name] + - [str(metric.classifiers.get(c, '')) + [str(metric.classifiers.get(c, '')) for c in extra_columns] + [str(metric.value), metric.units or '']) writer.writerow(row)