details:   https://code.tryton.org/tryton/commit/bb0582a117bd
branch:    default
user:      Cédric Krier <[email protected]>
date:      Tue Aug 11 12:02:33 2026 +0200
description:
        Add space between payees in UBL error message
diffstat:

 modules/edocument_ubl/edocument.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r ebb739d27852 -r bb0582a117bd modules/edocument_ubl/edocument.py
--- a/modules/edocument_ubl/edocument.py        Tue Aug 11 12:02:09 2026 +0200
+++ b/modules/edocument_ubl/edocument.py        Tue Aug 11 12:02:33 2026 +0200
@@ -1370,7 +1370,7 @@
                     raise InvoiceError(ngettext(
                             'edocument_ubl.msg_bank_account_not_found',
                             len(payees),
-                            parties=','.join([p.rec_name for p in payees]),
+                            parties=', '.join([p.rec_name for p in payees]),
                             account=etree.tostring(
                                 financial_account,
                                 pretty_print=True).decode()))

Reply via email to