diff --git a/modules/transilien/pages/departures.py b/modules/transilien/pages/departures.py index 85df7881..a2c0cb31 100644 --- a/modules/transilien/pages/departures.py +++ b/modules/transilien/pages/departures.py @@ -43,7 +43,7 @@ class DeparturesPage(BasePage): continue code_mission = self.parser.select(tr, 'td[headers=Code_de_mission] a', 1).text.strip() - time_s = self.parser.select(tr, 'td[headers=Heure_de_passage]', 1).text.strip() + time_s = self.parser.select(tr, 'td[headers=Heure_de_passage]', 1).text.strip().rstrip(u'\xa0*') destination = self.parser.select(tr, 'td[headers=Destination]', 1).text.strip() plateform = self.parser.select(tr, 'td[headers=Voie]', 1).text.strip()