Fix CSV output
A previous commit that removed the 'received reviews' from the default output totally broke CSV output. This gets it working again. Change-Id: I76775c496b5b450332f0e8f9d6fa4f7383ffc630
This commit is contained in:
parent
3f6e977d87
commit
7ad92d8088
@ -109,8 +109,7 @@ def write_csv(reviewer_data, file_obj):
|
||||
'Disagreements', 'Disagreement%']
|
||||
if ENABLE_RECEIVED:
|
||||
row.append('Received')
|
||||
writer.writerow(
|
||||
)
|
||||
writer.writerow(row)
|
||||
for (name, r_data, d_data, s_data) in reviewer_data:
|
||||
row = [name, r_data, d_data]
|
||||
if ENABLE_RECEIVED:
|
||||
|
Loading…
x
Reference in New Issue
Block a user