comptes_inactifs: oubli d'un paiement_ok() (stats)

This commit is contained in:
Daniel STAN 2014-08-16 19:25:18 +02:00
parent 49cef4c095
commit 150a270bbd

View file

@ -212,7 +212,7 @@ comptes_inactifs.py
mail = nb_mails_non_lus(login) mail = nb_mails_non_lus(login)
mail = mail == None and u'?' or mail > 0 and u'X' or u' ' mail = mail == None and u'?' or mail > 0 and u'X' or u' '
ligne = (a.id(), login, a.Nom(), date, forward, mail) 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) inscrits.append(ligne)
else: else:
anciens.append(ligne) anciens.append(ligne)