Fixed only showing non-empty graph lines
This commit is contained in:
parent
8c5820d5aa
commit
41c9a4d23f
1 changed files with 1 additions and 1 deletions
|
|
@ -1064,7 +1064,7 @@ def run_io_benchmark(state, test):
|
|||
|
||||
# Add horizontal graph to report
|
||||
for line in generate_horizontal_graph(test.merged_rates):
|
||||
if not re.match(r'^\s+$', line):
|
||||
if not re.match(r'^\s+$', strip_colors(line)):
|
||||
test.report.append(line)
|
||||
|
||||
# Add read speeds to report
|
||||
|
|
|
|||
Loading…
Reference in a new issue