From 2649aa3d056d3441a7838c4608d22cd81e7f2897 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Thu, 9 Feb 2023 12:55:26 +0100 Subject: [PATCH] tipi: fix enumerations of "code de saisie" (#74371) --- eopayment/tipi.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/eopayment/tipi.py b/eopayment/tipi.py index beb2d15..3c91411 100644 --- a/eopayment/tipi.py +++ b/eopayment/tipi.py @@ -65,9 +65,8 @@ class Payment(PaymentCommon): 'default': 'T', 'choices': [ ('T', _('test')), - ('X', _('production')), - ('A', _('with user account')), - ('M', _('manual entry')), + ('X', _('activation')), + ('A', _('production')), ], }, ], -- 2.37.2