From 92fc1091a94170726255d76b0e4226e159bf3b94 Mon Sep 17 00:00:00 2001 From: MikiEremiki Date: Mon, 11 Nov 2024 05:19:24 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D1=8B=20=D0=BF=D0=B5=D1=80=D0=B5=D0=BD=D0=BE=D1=81?= =?UTF-8?q?=D1=8B=20=D1=81=D1=82=D1=80=D0=BE=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/handlers/main_hl.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/handlers/main_hl.py b/src/handlers/main_hl.py index 061d6a2..853ca20 100644 --- a/src/handlers/main_hl.py +++ b/src/handlers/main_hl.py @@ -143,9 +143,9 @@ async def update_ticket(update: Update, context: ContextTypes.DEFAULT_TYPE): child_str = '' for person in people: if hasattr(person.adult, 'phone'): - adult_str = f'{person.name}\n+7{person.adult.phone}' + adult_str = f'{person.name}\n+7{person.adult.phone}\n' elif hasattr(person.child, 'age'): - child_str += f'{person.name} {person.child.age}' + child_str += f'{person.name} {person.child.age}\n' people_str = adult_str + child_str text = ( f'Техническая информация по билету {ticket_id}\n\n'