Skip to content

Commit

Permalink
Fix food eligible report
Browse files Browse the repository at this point in the history
Fixes 500 error that I didn't find because I had no food restrictions on anyone set.
  • Loading branch information
kitsuta committed Jun 3, 2024
1 parent eca61d5 commit 494e487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uber/site_sections/other_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def food_eligible(self, out, session):
header = ['Name', 'Badge Type', 'Badge #', 'Eligible']
ordered_food_restrictions = []
for val, label in c.FOOD_RESTRICTIONS.items():
ordered_food_restrictions.append(val)
ordered_food_restrictions.append(str(val))
header.append(label)

header.append('Notes')
Expand Down

0 comments on commit 494e487

Please sign in to comment.