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:
Russell Bryant 2013-12-04 17:41:23 -05:00
parent 3f6e977d87
commit 7ad92d8088
1 changed files with 1 additions and 2 deletions

View File

@ -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: