Skip to content

Commit

Permalink
Merge 091d390 into bca1e11
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsuta committed Nov 28, 2018
2 parents bca1e11 + 091d390 commit 47210e1
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions uber/site_sections/mivs_admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ def checklist_completion(self, out, session):
header_row.append('Past Due?')
out.writerow(header_row)

rows = []
for studio in session.query(IndieStudio).join(IndieStudio.group).join(Group.guest):
row = [studio.name]
for key, val in c.MIVS_CHECKLIST.items():
Expand All @@ -105,9 +104,7 @@ def checklist_completion(self, out, session):
'No' if localized_now() <= studio.checklist_deadline(key)
else humanize_timedelta(studio.past_checklist_deadline(key), granularity='hours'),
])
rows.extend(row)

out.writerow(rows)
out.writerow(row)

@xlsx_file
def accepted_games_xlsx(self, out, session):
Expand Down

0 comments on commit 47210e1

Please sign in to comment.