Commit d8c03dbf authored by Arnaud Fontaine's avatar Arnaud Fontaine

benchmark-report: Allow non-ASCII characters for plot labels.

parent 4ae52ef5
......@@ -103,7 +103,7 @@ def computeStatisticFromFilenameList(argument_namespace, filename_list,
reader_list.append(reader)
# Get headers
row_list = reader.next()
row_list = [ unicode(row, 'utf-8') for row in reader.next() ]
if not label_list:
label_list = row_list
label_merged_index = 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment