From 150a270bbd7a640f120fa3910513d3ab84fa9327 Mon Sep 17 00:00:00 2001 From: Daniel STAN Date: Sat, 16 Aug 2014 19:25:18 +0200 Subject: [PATCH] comptes_inactifs: oubli d'un paiement_ok() (stats) --- surveillance/comptes_inactifs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surveillance/comptes_inactifs.py b/surveillance/comptes_inactifs.py index 498590da..fd131c83 100755 --- a/surveillance/comptes_inactifs.py +++ b/surveillance/comptes_inactifs.py @@ -212,7 +212,7 @@ comptes_inactifs.py mail = nb_mails_non_lus(login) mail = mail == None and u'?' or mail > 0 and u'X' or u' ' ligne = (a.id(), login, a.Nom(), date, forward, mail) - if ann_scol in a.paiement() or a.adhesion() > time(): + if a.paiement_ok(): inscrits.append(ligne) else: anciens.append(ligne)