Projet

Général

Profil

0001-lingo-add-back-date-parser-import-as-it-s-still-in-u.patch

Voir les différences:

Subject: [PATCH] lingo: add back date parser import as it's still in use
 (#24079)

 combo/apps/lingo/models.py       | 1 +
 tests/test_lingo_remote_regie.py | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)
combo/apps/lingo/models.py
23 23

  
24 24
from decimal import Decimal
25 25

  
26
from dateutil import parser
26 27
import eopayment
27 28
from jsonfield import JSONField
28 29

  
tests/test_lingo_remote_regie.py
36 36
        'has_pdf': True,
37 37
        'online_payment': True,
38 38
        'paid': False,
39
        'payment_date': None,
39
        'payment_date': '1970-01-01',
40 40
        'no_online_payment_reason': '',
41 41
    },
42 42
]
43
-