From 1cebbcdcc222d1715c1eb9e923688a58a8947fb7 Mon Sep 17 00:00:00 2001 From: Vincent Ardisson Date: Wed, 5 Feb 2020 19:15:35 +0100 Subject: [PATCH] [trainline] rename bills "Trajet du" to "Achat du" to match website On website, it's also displayed "Achat du". Anyway, it's not the trip date, it's the date it was bought. --- modules/trainline/pages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/trainline/pages.py b/modules/trainline/pages.py index baf8c9e294..a902add27b 100644 --- a/modules/trainline/pages.py +++ b/modules/trainline/pages.py @@ -111,4 +111,4 @@ def obj_label(self): if Field('income')(self): return Format('Remboursement du %s', Field('date'))(self) else: - return Format('Trajet du %s', Field('date'))(self) + return Format('Achat du %s', Field('date'))(self) -- GitLab