From 2c5cdef2d406826aaed6856caac90fa14840e5c1 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Fri, 7 May 2021 01:30:50 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Display=20+=20before=20the=20int?= =?UTF-8?q?ernational=20prefix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database.py b/database.py index 28283ad..c5e6298 100644 --- a/database.py +++ b/database.py @@ -198,7 +198,7 @@ class Transaction(TableDeclarativeBase): if self.payment_name: string += f" | {self.payment_name}" if self.payment_phone: - string += f" | {self.payment_phone}" + string += f" | +{self.payment_phone}" if self.payment_email: string += f" | {self.payment_email}" return string