diff --git a/get_data.py b/get_data.py index 36e816e..a29cb28 100644 --- a/get_data.py +++ b/get_data.py @@ -3874,10 +3874,10 @@ async def last_5_games(): weekday_en = WEEKDAYS_EN[dt.weekday()] # monday..sunday month_en = MONTHS_EN[dt.month - 1] # january..december day = dt.day # 1..31 - place_en = "home" if best["place"] == "home" else "away" + place_en = "at home" if best["place"] == "home" else "on the road" formatted = ( - f"{weekday_en}, {month_en} {day}, at {place_en} against {best['opp']}" + f"{weekday_en}, {month_en} {day}, {place_en} against {best['opp']}" ) return {