From c4e60fb6214c04ea9f3cb8bb760571a0d1151222 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=AE=D1=80=D0=B8=D0=B9=20=D0=A7=D0=B5=D1=80=D0=BD=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE?= Date: Tue, 20 Jan 2026 11:13:37 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BF=D0=BE=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D1=84=D0=BE=D1=80=D0=BC=D1=83=D0=BB=D0=B8=D1=80=D0=BE?= =?UTF-8?q?=D0=B2=D0=BA=D1=83=20=D0=B4=D0=BB=D1=8F=20=D1=82=D0=B8=D1=82?= =?UTF-8?q?=D1=80=D0=B0=20=D0=A1=D0=BB=D0=B5=D0=B4=D1=83=D1=8E=D1=89=D0=B0?= =?UTF-8?q?=D1=8F=20=D0=B8=D0=B3=D1=80=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- get_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {