@@ -56,7 +56,8 @@ def handle_one(use_old, date_strings, count, url):
food = []
for meal in meals:
food.append(format_meal_allergies(meal))
- current_day_foods.append("\n".join(food))
+ if food:
+ current_day_foods.append("\n".join(food))
week_foods[week_day] = current_day_foods
return week_foods