diff --git a/modules/paypal/pages.py b/modules/paypal/pages.py index b1a4eba0..9f873ce7 100644 --- a/modules/paypal/pages.py +++ b/modules/paypal/pages.py @@ -121,7 +121,7 @@ class ProHistoryPage(Page): date = parse_french_date(tr.xpath('./td[@class="date"]')[0].text.strip()) status = tr.xpath('./td[@class="desc"]/ul/li[@class="first"]')[0].text.strip() #We pass this because it's not transaction - if status in [u'Créé', u'Annulé', u'Suspendu', u'Mis à jour']: + if status in [u'Créé', u'Annulé', u'Suspendu', u'Mis à jour', u'Actif']: continue raw = tr.xpath('./td[@class="desc"]/strong')[0].text.strip() t.parse(date=date, raw=raw)